OM-LOG

[GENERIC-FUNCTION]


OM 6.1
Function Reference
ARGUMENTS:
  - n a number or list [default = 1]
&optional
 
  - base a number [default = 2.7182818]

Description:

Logarithm function.
(the logarithm of a number to the base is the power to which the base must be raised in order to produce the number)

The <base> argument is optional. By default, <base> is equal to the number 'e', so om-log computes the 'natural' logarithm of <n>.

This function can be applied to numbers or lists.

Ex. (om-log 3) => 1.0986123
Ex. (om-log 3 10) => 0.47712126
Ex. (om-log '(3 4)) => (1.0986123 1.3862944)