EXP

EXP('Node')

In Math & numeric

The EXP function returns Euler’s number, e (~2.718) raised to a power of the given value, while retaining all dimensions.

Use this function when you need to compute e raised to the power of node values, for example in continuous growth or compounding models.

Parameters

NodeNode referenceRequired
Input node, specified using the node name in single quotes (e.g. 'Profit').

Example

Exponential transformation of node values

This example computes e raised to the power of each value in the input node.

Input node: 'A'

YearValue
20252
20263
20274.5

Formula: EXP('A')

YearEXP Result
20257.39
202620.09
202790.02

See also

LN
When you need the natural logarithm (inverse of EXP).
LOG
When you need a logarithm with a specific base.
POWER
When you need to raise values to an arbitrary exponent rather than base e.
Was this page helpful?