|
Function | Decadic logarithm: Pascal/Delphi only! |
|
Syntax | uses xmath;
function log10( x:Extended x ): Extended;
function log10d( x:double x ): Double; |
|
Description | The logarithm of the argument to the basis 10 is calculated and the result returned. |
|
Error handling | A DOMAIN error with NAN ("not-a-number") as return value results from x < 0 (including −0). A SING error with -HUGE_VAL as return value results from x=0. |
|
Return value | The decadic logarithm of the argument is returned. |
|
|