REBOL 3 Docs Guide Concepts Functions Datatypes Errors
  TOC < Back Next >   Updated: 6-Feb-2009 Edit History  

REBOL 3 Concepts: Math: Logarithmic Functions

Pending Revision

This document was written for R2 and has yet to be revised for R3.

Contents

exp

The expression:

exp value

raises E (natural number) to the power of value.

log-10

The expression:

log-10 value

returns the base-10 logarithm of value.

log-2

The expression:

log-2 value

returns the base-2 logarithm of value.

log-e

The expression:

log-e value

returns the base-E (natural number) log. of value.

power

The expressions:

value1 ** value2

power value1 value2

return the result of raising value1 to value2 power.

square-root

The expression:

square-root value

returns the square root of value.


  TOC < Back Next > REBOL.com - WIP Wiki Feedback Admin