Skip to main content

exp

Overloads

NameDescription
exp(bool arg) -> realCalculates the exponential of the given value (e^x).
exp(real arg) -> realCalculates the exponential of the given value (e^x).
exp(complex arg) -> complexCalculates the exponential of the given value (e^x).
exp(integer arg) -> realCalculates the exponential of the given value (e^x).

exp(bool arg) -> real

Calculates the exponential of the given value (e^x).

Parameters

  • arg: The exponent value.

exp(real arg) -> real

Calculates the exponential of the given value (e^x).

Parameters

  • arg: The exponent value.

exp(complex arg) -> complex

Calculates the exponential of the given value (e^x).

Parameters

  • arg: The exponent value.

exp(integer arg) -> real

Calculates the exponential of the given value (e^x).

Parameters

  • arg: The exponent value.