ATanH(Value: Double): Double;
ATanH(Value: double): double;
Value. Hyperbolic tangent of angle.
The ATanH method returns the hyperbolic arctangent of the specified number.
The Value parameter value cannot be empty and must belong to the (-1;1) interval.
To execute the example, add a link to the MathFin system assembly.
Sub UserProc;
Var
r: Double;
Begin
r := Math.ATanH(0.76);
Debug.WriteLine(r);
End Sub UserProc;
After executing the example the console window displays the hyperbolic arctangent equal to 0.996215082345103.
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.ATanH(0.76);
System.Diagnostics.Debug.WriteLine(r);
End Sub;
See also: