Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void SinhCosh(TMtxVec *SinhX, TMtxVec *CoshX); | Hyperbolic sine and cosine. |
| 2 | void SinhCosh(TMtxVec *SinhX, TMtxVec *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(TMtxVec *SinhX, TMtxVec *CoshX);
Hyperbolic sine and cosine.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | SinhX | TMtxVec * | |
| 2 | CoshX | TMtxVec * |
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 TVec::Complex property of SinhX and CoshX are adjusted automatically.
Note
Use this method if you require hyperbolic sine and hyperbolic cosine.
See Also: TVec::Sinh, TVec::Cosh
Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler
Overload 2: void SinhCosh(TMtxVec *SinhX, TMtxVec *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 | TMtxVec * | |
| 2 | CoshX | TMtxVec * | |
| 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 TVec::Complex property of SinhX and CoshX objects are not set automatically. An exception is raised if TVec::ConditionCheck and array borders are overrun/underun.
Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler