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
Implementation in Processing.h / Processing.cpp:
Loading...