ACosH(Value: Double): Double;
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.
The requirements and result of the Fore.NET example execution match with those in the Fore example.
Imports Prognoz.Platform.Interop.MathFin;
…
Public Shared Sub Main(Params: StartParams);
Var
r: double;
Math: MathClass = New MathClass();
Begin
r := Math.ACosH(10);
System.Diagnostics.Debug.WriteLine(r);
End Sub;
See also: