Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec *Sqr() const; | Square. |
| 2 | TMtxVec *Sqr(int Index, int Len) const; | Calculate the square of calling object elements [Index]...[Index+Len-1] in-place. |
| 3 | TMtxVec *Sqr(TMtxVec *X) const; | Calculate the square of all X object elements and store the results in the calling object. |
| 4 | TMtxVec *Sqr(TMtxVec *X, int XIndex, int Index, int Len) const; | Calculate the square of X object elements [XIndex]..[XIndex+Len-1]. The results are stored in calling object elements [Index]..[Index+Len-1]. |
Overload 1: TMtxVec *Sqr() const;
Square.
Remarks:
Calculate the square of all caling object elements in-place.
See Also: Matrix::Sqrt, Matrix::Power
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: TMtxVec *Sqr(int Index, int Len) const;
Calculate the square of calling object elements [Index]...[Index+Len-1] in-place.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
Remarks:
An exception is raised if array borders are overrun.
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler
Overload 3: TMtxVec *Sqr(TMtxVec *X) const;
Calculate the square of all X object elements and store the results in the calling object.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec * |
Remarks:
Size and Matrix::Complex properties of calling object are adjusted automatically.
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler
Overload 4: TMtxVec *Sqr(TMtxVec *X, int XIndex, int Index, int Len) const;
Calculate the square of X object elements [XIndex]..[XIndex+Len-1]. The results are stored in calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec * | |
| 2 | XIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Remarks:
Size and Matrix::Complex properties of the calling object are not changed. An exception is raised if array borders are overrun.
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler