Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec *SetDouble(int Index, const DewArray<double> &A) const; | Sets object values (double). |
| 2 | TMtxVec *SetDouble(int Index, int aIndex, int Len, const DewArray<double> &A) const; | |
| 3 | TVec *SetDouble(bool AComplex, const DewArray<double> &A) const; | Sets vector values (double). |
Overload 1: TMtxVec *SetDouble(int Index, const DewArray<double> &A) const;
Sets object values (double).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | A | const DewArray<double> & |
Remarks:
The double elements of A array are copied to the calling object elements [Index]..[Index+Length(A)-1]. An exception is raised if calling object array borders are overrun/underrun.
Note
Use this method for integer array only.
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: TMtxVec *SetDouble(int Index, int aIndex, int Len, const DewArray<double> &A) const;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | aIndex | int | |
| 3 | Len | int | |
| 4 | A | const DewArray<double> & |
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler
Overload 3: TVec *SetDouble(bool AComplex, const DewArray<double> &A) const;
Sets vector values (double).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AComplex | bool | |
| 2 | A | const DewArray<double> & |
Remarks:
Sets the Vector::Length property of the calling vector to (High(A)+1) and the Vector::Complex property to AComplex. The double elements of A array are copied to the calling vector. If AComplex is True then real parts of complex numbers are on even (0,2,4..)and imaginary parts on odd indexes.(1,3,5,..)
Note
Use this method for setting a double array only.
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler