Skip to content

EXP

Summary

Vector arithmetic exponential: applies the base-e exponential to each input value. Element-wise math transform.

Formula

outReal[i] = exp(inReal[i]) = e^{inReal[i]}

Inputs

  • inReal — Input values

Outputs

  • outReal — e raised to each input value

Implementation

TA-Lib Definition: exp.c · exp.yaml

Native File
C ta_EXP.c
Rust exp.rs
Java Core.java

TA-Lib is also available for Python, R and more using a wrapper.

Aliases

exponential, e^x

See Also

LN · SQRT