Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec *SetZero() const; | Initializes object elements to zero. |
| 2 | TMtxVec *SetZero(int Index, int Len) const; | Set all calling object elements to zero. |
| 3 | TMtx *SetZero(int Row, int Col, int ToRow, int ToCol) const; | Initializes matrix values to zero. |
Overload 1: TMtxVec *SetZero() const;
Initializes object elements to zero.
See Also: Matrix::SetVal
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: TMtxVec *SetZero(int Index, int Len) const;
Set all calling object elements to zero.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
Remarks:
Initializes calling object elements [Index]..[Index+Len-1] to zero. An exception is raised if array borders are overrun.
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler
Overload 3: TMtx *SetZero(int Row, int Col, int ToRow, int ToCol) const;
Initializes matrix values to zero.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Row | int | |
| 2 | Col | int | |
| 3 | ToRow | int | |
| 4 | ToCol | int |
Remarks:
Sets the calling matrix elements [Row,Col]..[Row+ToRow,Col+ToCol] to zero. An exception is raised if Matrix::ConditionCheck is true and array bounds are overrun.
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler