pow()
Math / CalculationDescription
Facilitates exponential expressions. Calculates b raised to the power e.
Syntax
float pow(float b, float e)
Parameters
| Name | Type | Description |
|---|---|---|
| b | float | base of the expression |
| e | float | power by which to raise the base |
Returns
floatRelated
Under the Hood
From Processing.h:
static float pow(float b, float e) { return std::pow(b,e); }
static float pow(float b, float e) { return std::pow(b,e);