Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtx SetZero(Int32 Row, Int32 Col, Int32 ToRow, Int32 ToCol) | Initializes matrix values to zero. |
| 2 | TMtxVec SetZero | Initializes object elements to zero. |
| └ indexed: TMtxVec SetZero(Int32 Index, Int32 Len) |
Overload 1: TMtx 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: TMtxVec SetZero
Initializes object elements to zero.
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVec SetZero(Int32 Index, Int32 Len)
Initializes calling object 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.