Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void SetSubRangeLevel(TMtxVec Src, Int32 Index, Int32 Len) | Define a subvector of the Src vector starting at Index and ending at Index+Len-1. |
| 2 | void SetSubRangeLevel(Int32 Index, Int32 Len) | Defines a sub vector/matrix and pushes previous subrange to internal stack. |
Overload 1: void SetSubRangeLevel(TMtxVec Src, Int32 Index, Int32 Len)
Define a subvector of the Src vector starting at Index and ending at Index+Len-1.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVec | source TVec or TMtx |
| 2 | Index | Int32 | start index |
| 3 | Len | Int32 | element count |
Result: stored in self (calling object)
Remarks:
Additionally, it pushes the previous subrange on to a stack, which can be poped by calling SetFullRangeLevel.
Overload 2: void SetSubRangeLevel(Int32 Index, Int32 Len)
Defines a sub vector/matrix and pushes previous subrange to internal stack.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | Int32 | start index |
| 2 | Len | Int32 | element count |
Result: stored in self (calling object)
Remarks:
Call SetSubRangeLevel, to pop the stack.