ESBArCosech Function
Returns the inverse hyperbolic cosecant of X.

Unit
QESBPCSMath

Declaration
Function ESBArCosech(const X: Extended): Extended;

Parameters
Value to process.

Category
Arithmetic Routines for Floats

Implementation

function ESBArCosech (const X: Extended): Extended;
begin
     if FloatIsZero (X) then
          raise EMathError.Create (rsDivideByZero);

     Result := ESBArSinh (1 / X);
End;


HTML generated by Time2HELP
http://www.time2help.com