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