====== log10 ====== ===== Description ===== Calculate the basic logarithm (base 10) of a number. ===== Function prototype ===== double log10 ===== Arguments ===== ^ Name ^ Type ^ Comment ^ | value | double | A number, the basic logarithm of which is to be calculated. | ===== Return value ===== The basic logarithm of the value provided, in double-precision. ===== Example ===== echo // log10(100) = 2 ... the output of which is written to the event log by [[plugins:general:zeoscript:reference:functions:echo]] as: 2 ===== Comments ===== None. ===== See also ===== * [[plugins:general:zeoscript:reference:functions:pow]] * [[plugins:general:zeoscript:reference:functions:log]]