Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxInt SetZero(Int32 Row, Int32 Col, Int32 ToRow, Int32 ToCol) | Initializes matrix values to zero. |
| 2 | TMtxVecInt SetZero | Set all calling vector elements to zero. |
| └ indexed: TMtxVecInt SetZero(Int32 Index, Int32 Len) |
Overload 1: TMtxInt SetZero(Int32 Row, Int32 Col, Int32 ToRow, Int32 ToCol)
Initializes matrix values to zero.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Row | Int32 | |
| 2 | Col | Int32 | |
| 3 | ToRow | Int32 | |
| 4 | ToCol | Int32 |
Result: stored in self (calling object), returns self for chaining
Remarks:
Sets the calling matrix elements [Row,Col]..[ToRow,ToCol] to zero. An exception is raised if Dew.Math.TMtxVecBase.ConditionCheck is true and array bounds are overrun.
Overload 2: TMtxVecInt SetZero
Set all calling vector elements to zero.
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVecInt SetZero(Int32 Index, Int32 Len)
Set calling vector elements [Index..Index+Len-1] to zero.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | Int32 | start index |
| 2 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Remarks:
An exception is raised if array borders are overrun/underrun.