Difference between revisions of "SinH"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function SinH(X: Extended): Extended; </source> ==Availability== SCAR Divi 3.00 > Current ==Description== This function calcul...") |
(No difference)
|
Latest revision as of 16:00, 3 July 2011
Definition
function SinH(X: Extended): Extended;
Availability
SCAR Divi 3.00 > Current
Description
This function calculates the hyperbolic sine of an given value X. It is a hyperbolic function.
Example
begin WriteLn(SinH(Pi)); WriteLn(SinH(0)); end.
Output:
11,5487393572577 0