Ln

From SCAR Divi Manual
Revision as of 12:27, 23 September 2011 by Freddy (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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

See Also