Rebol Programming/log-e

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:[edit | edit source]

LOG-E value 

DESCRIPTION:[edit | edit source]

Returns the base-E (natural number) logarithm.

LOG-E is a native value.

ARGUMENTS:[edit | edit source]

  • value -- (Type: number)

SOURCE CODE[edit | edit source]

log-e: native[
    "Returns the base-E (natural number) logarithm." 
    value [number!]
]