Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TOpenCLMtxVec Inv(TOpenCLMtxVec X, Int32 XIndex, Int32 Index, Int32 Len) | Calculate the inverse of X object elements [XIndex]..[XIndex+Len-1] without limiting operating. |
| 2 | TOpenCLMtxVec Inv(Int32 Index, Int32 Len) | Calculate the inverse of calling object elements [Index]..[Index+Len-1] in-place. |
Overload 1: TOpenCLMtxVec Inv(TOpenCLMtxVec X, Int32 XIndex, Int32 Index, Int32 Len)
Calculate the inverse of X object elements [XIndex]..[XIndex+Len-1] without limiting operating.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMtxVec | source TOpenCLVector or TOpenCLMatrix |
| 2 | XIndex | Int32 | X start index |
| 3 | Index | Int32 | start index |
| 4 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Remarks:
Store the results in calling object elements [Index]..[Index+Len-1]. An exception is raised if X and calling object Dew.Math.clMatrix.Complex property does not match or array borders are overrun/underrun.
Overload 2: TOpenCLMtxVec Inv(Int32 Index, Int32 Len)
Calculate the inverse of calling object elements [Index]..[Index+Len-1] in-place.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | Int32 | start index |
| 2 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Remarks:
An exception is raised if array borders are overrun/underrun.