IMath.ACosH

Syntax

ACosH(Value: Double): Double;

Parameters

Value. Hyperbolic cosine of angle.

Description

The ACosH method returns the hyperbolic arccosine of the specified number.

Comments

The Value parameter value cannot be empty and must be greater than 1.

Example

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:

IMath