Log10

From SCAR Divi Manual
Revision as of 12:26, 23 September 2011 by Freddy (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

function Log10(const X: Extended): Extended;

Availability

SCAR Divi 3.00 > Current

Description

Returns the logarithm of a value given by X with base 10.

Example

begin
  WriteLn(Log10(10));
  WriteLn(Log10(5));
  WriteLn(Log10(2));
end.

Output:

1
0,698970004336019
0,301029995663981

See Also