Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Sub(const Value: TCplx): TOpenCLMtxVec; | Subtracts complex Value from all calling object complex elements. |
| └ indexed: function Sub(const Value: TCplx; Index: Integer; Len: Integer): TOpenCLMtxVec; | ||
| 2 | function Sub(const Vec: TOpenCLMtxVec): TOpenCLMtxVec; | Array subtraction. |
| └ indexed: function Sub(const Vec: TOpenCLMtxVec; VecIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec; | ||
| 3 | function Sub(const Src: TOpenCLMtxVec; const Value: TCplx): TOpenCLMtxVec; | Subtract complex Value from Src. |
| └ indexed: function Sub(const Src: TOpenCLMtxVec; const Value: TCplx; SrcIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec; | ||
| 4 | function Sub(const Vec1: TOpenCLMtxVec; const Vec2: TOpenCLMtxVec): TOpenCLMtxVec; | Subtract Vec2 elements from Vec1 elements. |
| └ indexed: function Sub(const Vec1: TOpenCLMtxVec; const Vec2: TOpenCLMtxVec; Vec1Index: Integer; Vec2Index: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec; | ||
| 5 | function Sub(const Src: TOpenCLMtxVec; const Value: Double): TOpenCLMtxVec; | Subtract real Value from Src. |
| └ indexed: function Sub(const Src: TOpenCLMtxVec; const Value: Double; SrcIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec; | ||
| 6 | function Sub(const Value: Double): TOpenCLMtxVec; | Subtracts Value from object elements. |
| └ indexed: function Sub(const Value: Double; Index: Integer; Len: Integer): TOpenCLMtxVec; |
Overload 1: function Sub(const Value: TCplx): TOpenCLMtxVec;
Subtracts complex Value from all calling object complex elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | TCplx | scalar |
Result: stored in self (calling object), returns self for chaining
Indexed: function Sub(const Value: TCplx; Index: Integer; Len: Integer): TOpenCLMtxVec;
Subtracts complex Value from calling object complex elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | TCplx | scalar |
| 2 | Index | Integer | start index |
| 3 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
An exception is raised if array borders are overrun.
Overload 2: function Sub(const Vec: TOpenCLMtxVec): TOpenCLMtxVec;
Array subtraction.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TOpenCLMtxVec | source TOpenCLVector or TOpenCLMatrix |
Result: stored in self (calling object), returns self for chaining
Subtract each of Vec elements from corresponding elements in the calling object. An exception is raised if Vec and calling object size and TOpenCLBase.Complex properties do not match.
Indexed: function Sub(const Vec: TOpenCLMtxVec; VecIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;
Subtract Vec elements [VecIndex]..[VecIndex+Len-1] from corresponding calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TOpenCLMtxVec | source TOpenCLVector or TOpenCLMatrix |
| 2 | VecIndex | Integer | |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
The results are stored in the calling object elements [Index]..[Index+Len-1]. Size and TOpenCLBase.Complex properties of the calling object must be set explicitly. An exception is raised if array borders are overrun or underrun.
Overload 3: function Sub(const Src: TOpenCLMtxVec; const Value: TCplx): TOpenCLMtxVec;
Subtract complex Value from Src.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TOpenCLMtxVec | source TOpenCLVector or TOpenCLMatrix |
| 2 | Value | TCplx | scalar |
Result: stored in self (calling object), returns self for chaining
Store the results in calling object. Size and TOpenCLBase.Complex property of calling object are adjusted automatically.
Indexed: function Sub(const Src: TOpenCLMtxVec; const Value: TCplx; SrcIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;
Subtract complex Value from Src elements [SrcIndex]..[SrcIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TOpenCLMtxVec | source TOpenCLVector or TOpenCLMatrix |
| 2 | Value | TCplx | scalar |
| 3 | SrcIndex | Integer | source start index |
| 4 | Index | Integer | start index |
| 5 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
Stores the result in calling object elements [Index]..[Index+Len-1]. Size and TOpenCLBase.Complex properties of the calling object must be set explicitly. An exception is raised if array borders are overrun or underrun.
Overload 4: function Sub(const Vec1: TOpenCLMtxVec; const Vec2: TOpenCLMtxVec): TOpenCLMtxVec;
Subtract Vec2 elements from Vec1 elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec1 | TOpenCLMtxVec | source TOpenCLVector or TOpenCLMatrix |
| 2 | Vec2 | TOpenCLMtxVec | source TOpenCLVector or TOpenCLMatrix |
Result: stored in self (calling object), returns self for chaining
Stores the results in calling object. Size and TOpenCLBase.Complex property of calling object are adjusted automatically. An exception is raised if Vec1 and Vec2 size and TOpenCLBase.Complex property do not match.
Indexed: function Sub(const Vec1: TOpenCLMtxVec; const Vec2: TOpenCLMtxVec; Vec1Index: Integer; Vec2Index: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;
Subtract Vec22 elements [Vec2Index]..[Vec2Index+Len-1] from Vec1 object elements [Vec1Index]..[Vec1Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec1 | TOpenCLMtxVec | source TOpenCLVector or TOpenCLMatrix |
| 2 | Vec2 | TOpenCLMtxVec | source TOpenCLVector or TOpenCLMatrix |
| 3 | Vec1Index | Integer | |
| 4 | Vec2Index | Integer | |
| 5 | Index | Integer | start index |
| 6 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
Stores the results in calling object elements [Index]..[Index+Len-1]. Size and TOpenCLBase.Complex properties of the calling object must be set explicitly. An exception is raised if array borders are overrun or underrun.
Overload 5: function Sub(const Src: TOpenCLMtxVec; const Value: Double): TOpenCLMtxVec;
Subtract real Value from Src.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TOpenCLMtxVec | source TOpenCLVector or TOpenCLMatrix |
| 2 | Value | Double | scalar |
Result: stored in self (calling object), returns self for chaining
Store the results in calling object. Size and TOpenCLBase.Complex property of calling object are adjusted automatically.
Indexed: function Sub(const Src: TOpenCLMtxVec; const Value: Double; SrcIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;
Subtract real Value from Src elements [SrcIndex]..[SrcIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TOpenCLMtxVec | source TOpenCLVector or TOpenCLMatrix |
| 2 | Value | Double | scalar |
| 3 | SrcIndex | Integer | source start index |
| 4 | Index | Integer | start index |
| 5 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
Stores the result in calling object elements [Index]..[Index+Len-1]. Size and TOpenCLBase.Complex properties of the calling object must be set explicitly. An exception is raised if array borders are overrun or underrun.
Overload 6: function Sub(const Value: Double): TOpenCLMtxVec;
Subtracts Value from object elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Double | scalar |
Result: stored in self (calling object), returns self for chaining
Subtracts Value from all calling object elements.
Indexed: function Sub(const Value: Double; Index: Integer; Len: Integer): TOpenCLMtxVec;
Subtracts Value from calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Double | scalar |
| 2 | Index | Integer | start index |
| 3 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
An exception is raised if array borders are overrun.