Mark Wickens

back to Command Reference

EXP

[All Models]

Purpose

Returns the value of the exponential function for the argument.

Format

EXP      (argument)
          └──┬───┘
   Numeric expression

*The parenthesis enclosing the argument can be omitted when the argument is a numeric value or variable.

Example

EXP(1)

Parameters

argument: Numeric expression in the range of the argument <= 230.2585092

Explanation

Returns the value of the exponential function value for the argument.

EXP(x) = e^x

See

Sample Program

10  INPUT "e^X (UP TO 230)"; N
20  PRINT "e^X";N;"="; EXP N
30  END

Displays exponential function value for numeric input up to 230.