Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Vector Select(TMtx Src, Int32 StartIndex, Int32 StopIndex) | Subrange the source matrix and return a vector without copy operation. |
| 2 | Vector Select(TMtx Src, Int32 StartIndex, Int32 Step, Int32 StopIndex) | Subrange the source matrix and return a vector. |
| 3 | Vector Select(TVec Src, Int32 StartIndex, Int32 StopIndex) | Subrange the source vector without copy operation. |
| 4 | Vector Select(TVec Src, Int32 StartIndex, Int32 Step, Int32 StopIndex) | Subrange the source vector. |
Overload 1: Vector Select(TMtx Src, Int32 StartIndex, Int32 StopIndex)
Subrange the source matrix and return a vector without copy operation.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtx | source TMtx |
| 2 | StartIndex | Int32 | |
| 3 | StopIndex | Int32 |
Returns: Vector
Remarks:
Internally calls Dew.Math.Vector.SetSubIndex
Overload 2: Vector Select(TMtx Src, Int32 StartIndex, Int32 Step, Int32 StopIndex)
Subrange the source matrix and return a vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtx | source TMtx |
| 2 | StartIndex | Int32 | |
| 3 | Step | Int32 | |
| 4 | StopIndex | Int32 |
Returns: Vector
Remarks:
Internally calls Dew.Math.Vector.SetSubIndex
Overload 3: Vector Select(TVec Src, Int32 StartIndex, Int32 StopIndex)
Subrange the source vector without copy operation.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec | source TVec |
| 2 | StartIndex | Int32 | |
| 3 | StopIndex | Int32 |
Returns: Vector
Remarks:
Internally calls Dew.Math.Vector.SetSubIndex
Overload 4: Vector Select(TVec Src, Int32 StartIndex, Int32 Step, Int32 StopIndex)
Subrange the source vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec | source TVec |
| 2 | StartIndex | Int32 | |
| 3 | Step | Int32 | |
| 4 | StopIndex | Int32 |
Returns: Vector
Remarks:
Internally calls Dew.Math.Vector.SetSubIndex