Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Vector Select(TVec *Src, int StartIndex, int Step, int StopIndex); | Subrange the source vector. |
| 2 | Vector Select(TVec *Src, int StartIndex, int StopIndex); | Subrange the source vector without copy operation. |
| 3 | Vector Select(TMtx *Src, int StartIndex, int Step, int StopIndex); | Subrange the source matrix and return a vector. |
| 4 | Vector Select(TMtx *Src, int StartIndex, int StopIndex); | Subrange the source matrix and return a vector without copy operation. |
Overload 1: Vector Select(TVec *Src, int StartIndex, int Step, int StopIndex);
Subrange the source vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec * | |
| 2 | StartIndex | int | |
| 3 | Step | int | |
| 4 | StopIndex | int |
Remarks:
Internally calls Vector::SetSubIndex
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 2: Vector Select(TVec *Src, int StartIndex, int StopIndex);
Subrange the source vector without copy operation.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec * | |
| 2 | StartIndex | int | |
| 3 | StopIndex | int |
Remarks:
Internally calls Vector::SetSubIndex
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 3: Vector Select(TMtx *Src, int StartIndex, int Step, int StopIndex);
Subrange the source matrix and return a vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtx * | |
| 2 | StartIndex | int | |
| 3 | Step | int | |
| 4 | StopIndex | int |
Remarks:
Internally calls Vector::SetSubIndex
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 4: Vector Select(TMtx *Src, int StartIndex, int StopIndex);
Subrange the source matrix and return a vector without copy operation.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtx * | |
| 2 | StartIndex | int | |
| 3 | StopIndex | int |
Remarks:
Internally calls Vector::SetSubIndex
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler