EXP inputVector resultVariable

Replaces the contents of the result variable with the number e (i.e., 2.71828...) taken to the power of each element of the input vector.

DATA 1,4 A
EXP A B
PRINT A B

The above program produces the following output:

A: (1.0 2.0 3.0 4.0)
B: (2.7182818284590455 7.38905609893065,
 20.085536923187668 54.598150033144236)