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