Log10 |
Top Previous Next |
Prototype
OutValue:=log10 (InInput)
Description
Return logarithm ten base.
Parameters
InInput: numeric value corresponding to input number.
Returned Value
OutValue: numeric value corresponding to logarithm ten base
Notes
None.
Esempio
// Inizialize X variable X:=3;
//Calculate logarithm Y:=log10(X);
//Log output value ApplicationLog('Logarithm of '+Inttostr(X)+' is: '+FloatToStr(Y)); |