next up previous

12.5.2.11 Logarithm Base 10

Given n (the only argument), the log10 function returns the float value x such that the following equation is satisfied:

n = 10x

Syntax

(log10 <numeric-expression>)

Example

CLIPS> (log10 100)
2.0
CLIPS>


next up previous