ESBArSinh Function |
Unit
QESBPCSMath
Declaration
Function ESBArSinh(const X: Extended): Extended;
Parameters |
X | Value to process. |
Category
Arithmetic Routines for FloatsImplementation
function ESBArSinh (const X: Extended): Extended; begin Result := Ln (X + Sqrt (Sqr (X) + 1)); End; |
|