Navigation: Function Reference > General Utility Functions > log10()

log10()

Top  Previous  Next

log10( base: Extended; x: Extended ) : Extended;

 

Returns log base 10 of x.

 

Parameters

 

base

numeric value

x

numeric value

 

var f: Double;

var l: Double;

 

f := 10;

 

l := log10( f );

 

//l is now equal to 1;