EXP
Category: Math & numeric
Overview
| Description | Returns 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. |
| Syntax | EXP('Node') |
| Parameters | Node: 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
| Year | Value |
|---|---|
| 2025 | 2 |
| 2026 | 3 |
| 2027 | 4.5 |
Formula: EXP('A')
| Year | → EXP Result |
|---|---|
| 2025 | 7.39 |
| 2026 | 20.09 |
| 2027 | 90.02 |
Related Functions
| Function | When to use instead |
|---|---|
| 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. |