Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void SinhCosh(TOpenCLMtxVec *SinhX, TOpenCLMtxVec *CoshX) const; | Hyperbolic sine and cosine. |
| 2 | void SinhCosh(TOpenCLMtxVec *SinhX, TOpenCLMtxVec *CoshX, int SinhIndex, int CoshIndex, int Index, int Len) const; | Calculates the hyperbolic sine and hyperbolic cosine for calling object elements [Index]..[Index+Len-1]. |
Overload 1: void SinhCosh(TOpenCLMtxVec *SinhX, TOpenCLMtxVec *CoshX) const;
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 clVector::Complex property of SinhX and CoshX are adjusted automatically.
Note
Use this method if you require hyperbolic sine and hyperbolic cosine.
See Also: clVector::Sinh, clVector::Cosh
Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler
Overload 2: void SinhCosh(TOpenCLMtxVec *SinhX, TOpenCLMtxVec *CoshX, int SinhIndex, int CoshIndex, int Index, int Len) const;
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 clVector::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::clVector · Dew.Math/clMtxExpr.h · Cross-compiler