| ESBArCosech Function | 
Unit
QESBPCSMath
Declaration
Function ESBArCosech(const X: Extended): Extended;
| Parameters | 
| X | Value to process. | 
Category
Arithmetic Routines for FloatsImplementation
 
| function ESBArCosech (const X: Extended): Extended;
begin
     if FloatIsZero (X) then
          raise EMathError.Create (rsDivideByZero);
     Result := ESBArSinh (1 / X);
End; | 
|  |