ASinH(Value: Double): Double;
ASinH(Value: double): double;
Value. Hyperbolic sine of angle.
The ASinH method returns hyperbolic arcsine of the specified number.
Parameter value cannot be empty.
To get hyperbolic angle sine, use the IMath.SinH method.
To execute the example, add a link to the MathFin system assembly.
Sub UserProc;
Var
r: Double;
Begin
r := Math.ASinH(-2.5);
Debug.WriteLine(r);
End Sub UserProc;
After executing the example the console window displays the hyperbolic arcsine equal to -1.6472311463711.
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.ASinH(-2.5);
System.Diagnostics.Debug.WriteLine(r);
End Sub;
See also: