Difference between revisions of "Ln"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function Ln(const X: Extended): Extended; </source> ==Availability== SCAR Divi 3.28 > Current ==Description== Returns the [htt...") |
(No difference)
|
Latest revision as of 11:27, 23 September 2011
Definition
function Ln(const X: Extended): Extended;
Availability
SCAR Divi 3.28 > Current
Description
Returns the natural logarithm of a value given by X.
Example
begin WriteLn(Ln(0.5)); WriteLn(Ln(2)); WriteLn(Ln(10)); end.
Output:
-0,693147180559945 0,693147180559945 2,30258509299405