Changeset 3340 in Sophya for trunk/SophyaLib/TArray/matharr.h
- Timestamp:
- Oct 5, 2007, 2:13:07 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/matharr.h
r2322 r3340 12 12 namespace SOPHYA { 13 13 14 //! Class for simple mathematical operation on arrays 14 //! Class for simple mathematical operation on arrays 15 15 template <class T> 16 16 class MathArray { 17 17 public: 18 // Applying a function 18 virtual ~MathArray(void) {}; 19 20 // Applying a function 19 21 // Replaces the input array content with the result f(x) 20 22 virtual TArray<T>& ApplyFunctionInPlace(TArray<T> & a, Arr_DoubleFunctionOfX f); … … 115 117 class ComplexMathArray { 116 118 public: 119 virtual ~ComplexMathArray(void) {}; 120 117 121 // Applying a function 118 122 // Replaces the input array content with the result f(x)
Note:
See TracChangeset
for help on using the changeset viewer.