Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void SetSubRangeLevel(int Index, int Len) const; | Defines a sub vector/matrix and pushes previous subrange to internal stack. |
| 2 | void SetSubRangeLevel(TMtxVec *Src, int Index, int Len = MtxVecEOA) const; | Define a subvector of the Src vector starting at Index and ending at Index+Len-1. |
Overload 1: void SetSubRangeLevel(int Index, int Len) const;
Defines a sub vector/matrix and pushes previous subrange to internal stack.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
Remarks:
Call SetSubRangeLevel, to pop the stack.
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: void SetSubRangeLevel(TMtxVec *Src, int Index, int Len = MtxVecEOA) const;
Define a subvector of the Src vector starting at Index and ending at Index+Len-1.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVec * | |
| 2 | Index | int | |
| 3 | Len = MtxVecEOA | int |
Remarks:
Additionally, it pushes the previous subrange on to a stack, which can be poped by calling SetFullRangeLevel.
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler