DiGrande.it

Blind, Braille and Embossing Technologies

This site uses cookies to personalize content and ads, provide social media features and analyze links. By closing this banner or continuing to browse, you consent to their use.
Read the DiGrande.it Cookie Policy

Exp- Returns natural logarithm elevated to power

Function that returns the base E of the natural logarithm elevated to the power of a number.

- Exp(N): float

Parameters:

- (float) N: exponent applied to the base E of the natural logarithm.

Description:

Use the Exp function to derive the base E of the natural logarithm elevated to the power of a number. The Exp function is reversed from the Ln function, which obtains the natural logarithm of a number.

Examples:

// shows the basis of the natural logarithm elevated to the power of 2

MsgBox(Exp(2))

// Stores the result of the Exp function in R with exponent 3

R = Exp(3)

// Stores the natural logarithm of R

N = Ln(R)

// N is to contain the number 3

MsgBox(R,N)