Vector::SetSubRangeLevel Method

Overload List

#SignatureDescription
1void SetSubRangeLevel(int Index, int Len) const;Defines a sub vector/matrix and pushes previous subrange to internal stack.
2void 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.

#NameTypeDescription
1Indexint
2Lenint
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.

#NameTypeDescription
1SrcTMtxVec *
2Indexint
3Len = MtxVecEOAint
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