Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec *Shift(int Offset, int Index, int Len = MtxVecEOA) const; | Shift Matrix elements in range. |
| 2 | TMtxVec *Shift(TMtxVec *Vec, int Offset, int VecIndex, int Index, int Len = MtxVecEOA) const; | A shift on Matrix elements in range. |
Overload 1: TMtxVec *Shift(int Offset, int Index, int Len = MtxVecEOA) const;
Shift Matrix elements in range.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Offset | int | |
| 2 | Index | int | |
| 3 | Len = MtxVecEOA | int |
Remarks:
Shifts calling Matrix elements in specified range [Index..Index+Len]. The number of elements by which to shift is specified in the Offset parameter.
Offset can be any integer number, positive or negative.
See Also: Matrix::Reverse, Matrix::Rotate
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: TMtxVec *Shift(TMtxVec *Vec, int Offset, int VecIndex, int Index, int Len = MtxVecEOA) const;
A shift on Matrix elements in range.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVec * | |
| 2 | Offset | int | |
| 3 | VecIndex | int | |
| 4 | Index | int | |
| 5 | Len = MtxVecEOA | int |
Remarks:
Performs shift on source Matrix elements in specified range [Index..Index+Len] and stores them to calling Matrix. The number of elements to shift is specified in the Offset parameter. Offset can be any integer number, positive or negative.
See Also: Matrix::Reverse, Matrix::Shift
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler