EXP
EXP('Node')
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'
| Year | Value |
|---|---|
| 2025 | 2 |
| 2026 | 3 |
| 2027 | 4.5 |
Formula: EXP('A')
| Year | EXP Result |
|---|---|
| 2025 | 7.39 |
| 2026 | 20.09 |
| 2027 | 90.02 |