Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TOpenCLBase *Inv(TOpenCLBase *X, int XIndex, int Index, int Len); | |
| 2 | TOpenCLMtxVec *Inv(); | Inverse elements. |
| 3 | TOpenCLMtxVec *Inv(int Index, int Len); | Calculate the inverse of calling object elements [Index]..[Index+Len-1] in-place. |
| 4 | TOpenCLMtxVec *Inv(TOpenCLMtxVec *X); | Calculate the inverse of all X object elements without limiting operating. |
| 5 | TOpenCLMtxVec *Inv(TOpenCLMtxVec *X, int XIndex, int Index, int Len); | Calculate the inverse of X object elements [XIndex]..[XIndex+Len-1] without limiting operating. |
Overload 1: TOpenCLBase *Inv(TOpenCLBase *X, int XIndex, int Index, int Len);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLBase * | |
| 2 | XIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Declared in Dew::Math::TOpenCLBase · Dew.Math/clMtxVec.h · Cross-compiler
Overload 2: TOpenCLMtxVec *Inv();
Inverse elements.
Remarks:
Calculates the inverse of all calling object elements in-place without limiting inverse operation.
See Also: TOpenCLVector::Divide
Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler
Overload 3: TOpenCLMtxVec *Inv(int Index, int Len);
Calculate the inverse of calling object elements [Index]..[Index+Len-1] in-place.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
Remarks:
An exception is raised if array borders are overrun/underrun.
Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler
Overload 4: TOpenCLMtxVec *Inv(TOpenCLMtxVec *X);
Calculate the inverse of all X object elements without limiting operating.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMtxVec * |
Remarks:
Store the results in calling object. Size and TOpenCLBase::Complex property of calling object are adjusted automatically.
Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler
Overload 5: TOpenCLMtxVec *Inv(TOpenCLMtxVec *X, int XIndex, int Index, int Len);
Calculate the inverse of X object elements [XIndex]..[XIndex+Len-1] without limiting operating.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMtxVec * | |
| 2 | XIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Remarks:
Store the results in calling object elements [Index]..[Index+Len-1]. An exception is raised if X and calling object TOpenCLBase::Complex property does not match or array borders are overrun/underrun.
Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler