Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Select(Src: TOpenCLMatrix; StartIndex: Integer; StopIndex: Integer): clVector; | Subrange the source clMatrix and return a clVector without copy operation. |
| 2 | function Select(Src: TOpenCLMatrix; StartIndex: Integer; Step: Integer; StopIndex: Integer): clVector; | Subrange the source clMatrix and return a clVector. |
| 3 | function Select(Src: TOpenCLVector; StartIndex: Integer; StopIndex: Integer): clVector; | Subrange the source clVector without copy operation. |
| 4 | function Select(Src: TOpenCLVector; StartIndex: Integer; Step: Integer; StopIndex: Integer): clVector; | Subrange the source clVector. |
Overload 1: function Select(Src: TOpenCLMatrix; StartIndex: Integer; StopIndex: Integer): clVector;
Subrange the source clMatrix and return a clVector without copy operation.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TOpenCLMatrix | source TOpenCLMatrix |
| 2 | StartIndex | Integer | |
| 3 | StopIndex | Integer |
Returns: clVector
Remarks:
Internally calls clVector.Select
Overload 2: function Select(Src: TOpenCLMatrix; StartIndex: Integer; Step: Integer; StopIndex: Integer): clVector;
Subrange the source clMatrix and return a clVector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TOpenCLMatrix | source TOpenCLMatrix |
| 2 | StartIndex | Integer | |
| 3 | Step | Integer | |
| 4 | StopIndex | Integer |
Returns: clVector
Remarks:
Internally calls clVector.Select
Overload 3: function Select(Src: TOpenCLVector; StartIndex: Integer; StopIndex: Integer): clVector;
Subrange the source clVector without copy operation.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TOpenCLVector | source TOpenCLVector |
| 2 | StartIndex | Integer | |
| 3 | StopIndex | Integer |
Returns: clVector
Remarks:
Internally calls clVector.Select
Overload 4: function Select(Src: TOpenCLVector; StartIndex: Integer; Step: Integer; StopIndex: Integer): clVector;
Subrange the source clVector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TOpenCLVector | source TOpenCLVector |
| 2 | StartIndex | Integer | |
| 3 | Step | Integer | |
| 4 | StopIndex | Integer |
Returns: clVector
Remarks:
Internally calls clVector.Select