exp()
Math / CalculationDescription
Returns Euler's number e raised to the power of the parameter.
Syntax
float exp(float x)
Parameters
| Name | Type | Description |
|---|---|---|
| x | float | exponent |
Returns
floatRelated
Under the Hood
From Processing.h:
static float exp(float x) { return std::exp(x); }
static float exp(float x) { return std::exp(x);