Reference Updated March 25, 2026

EXP

Category: Math & numeric

Overview

DescriptionReturns Euler’s number, e (~2.718) raised to a power of the given value, while retaining all dimensions. Use this when you need to compute e raised to the power of node values, for example in continuous growth or compounding models.
SyntaxEXP('Node')
ParametersNode: Input node, specified using the node name in single quotes (e.g. 'Profit').

Examples

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')

Year→ EXP Result
20257.39
202620.09
202790.02

FunctionWhen to use instead
LNWhen you need the natural logarithm (inverse of EXP).
LOGWhen you need a logarithm with a specific base.
POWERWhen you need to raise values to an arbitrary exponent rather than base e.
Was this page helpful?