ACosH(Value: Double): Double;
Value. Hyperbolic cosine of angle.
The ACosH method returns the hyperbolic arccosine of the specified number.
The Value parameter value cannot be empty and must be greater than 1.
To execute the example, add a link to the MathFin system assembly.
Sub UserProc;
Var
r: Double;
Begin
r := Math.ACosH(10);
Debug.WriteLine(r);
End Sub UserProc;
After executing the example the console window displays the hyperbolic arccosine equal to 2.99322284612638.
See also: