Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *SetZero() const; | Set all calling vector elements to zero. |
| 2 | TMtxVecInt *SetZero(const int Index, const int Len) const; | Set calling vector elements [Index..Index+Len-1] to zero. |
| 3 | TMtxInt *SetZero(int Row, int Col, int ToRow, int ToCol) const; | Initializes matrix values to zero. |
Overload 1: TMtxVecInt *SetZero() const;
Set all calling vector elements to zero.
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 2: TMtxVecInt *SetZero(const int Index, const int Len) const;
Set calling vector elements [Index..Index+Len-1] to zero.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | const int | |
| 2 | Len | const int |
Remarks:
An exception is raised if array borders are overrun/underrun.
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 3: TMtxInt *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]..[ToRow,ToCol] to zero. An exception is raised if TMtxVecBase::ConditionCheck is true and array bounds are overrun.
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler