Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void SinhCosh(TOpenCLBase *SinhX, TOpenCLBase *CoshX, int SinhIndex, int CoshIndex, int Index, int Len); | |
| 2 | void SinhCosh(TOpenCLMtxVec *SinhX, TOpenCLMtxVec *CoshX); | Hyperbolic sine and cosine. |
| 3 | void SinhCosh(TOpenCLMtxVec *SinhX, TOpenCLMtxVec *CoshX, int SinhIndex, int CoshIndex, int Index, int Len); | Calculates the hyperbolic sine and hyperbolic cosine for calling object elements [Index]..[Index+Len-1]. |
Overload 1: void SinhCosh(TOpenCLBase *SinhX, TOpenCLBase *CoshX, int SinhIndex, int CoshIndex, int Index, int Len);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | SinhX | TOpenCLBase * | |
| 2 | CoshX | TOpenCLBase * | |
| 3 | SinhIndex | int | |
| 4 | CoshIndex | int | |
| 5 | Index | int | |
| 6 | Len | int |
Declared in Dew::Math::TOpenCLBase · Dew.Math/clMtxVec.h · Cross-compiler
Overload 2: void SinhCosh(TOpenCLMtxVec *SinhX, TOpenCLMtxVec *CoshX);
Hyperbolic sine and cosine.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | SinhX | TOpenCLMtxVec * | |
| 2 | CoshX | TOpenCLMtxVec * |
Remarks:
Calculates the hyperbolic sine and hyperbolic cosine for all calling object elements and stores the sines to SinhX and cosines to CoshX. Size and TOpenCLBase::Complex property of SinhX and CoshX are adjusted automatically.
Note
Use this method if you require hyperbolic sine and hyperbolic cosine.
See Also: TOpenCLMatrix::Sinh, TOpenCLMatrix::Cosh
Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler
Overload 3: void SinhCosh(TOpenCLMtxVec *SinhX, TOpenCLMtxVec *CoshX, int SinhIndex, int CoshIndex, int Index, int Len);
Calculates the hyperbolic sine and hyperbolic cosine for calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | SinhX | TOpenCLMtxVec * | |
| 2 | CoshX | TOpenCLMtxVec * | |
| 3 | SinhIndex | int | |
| 4 | CoshIndex | int | |
| 5 | Index | int | |
| 6 | Len | int |
Remarks:
Stores the sines to SinhX elemets [SinhIndex]..[SinhIndex+Len-1] and cosines to CoshX elements [CoshIndex]..[CoshIndex+Len-1] elements. Size and TOpenCLBase::Complex property of SinhX and CoshX objects are not set automatically. An exception is raised if array borders are overrun/underun.
Declared in Dew::Math::TOpenCLMtxVec · Dew.Math/clMtxVec.h · Cross-compiler