SinH(Value: Double): Double;
SinH(Value: double): double;
Value. A real number, which hyperbolic sine must be found.
The SinH method returns a hyperbolic sine of the specified number.
Value of the Value parameter must be set as an end number.
To execute the example, add a link to the MathFin system assembly.
Sub UserProc;
Var
r: Double;
Begin
r := Math.SinH(4);
Debug.WriteLine(r);
End Sub UserProc;
After executing the example the console window displays the hyperbolic sine equal to 27.2899171971278.
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.SinH(4);
System.Diagnostics.Debug.WriteLine(r);
End Sub;
See also: