Math Exponential Functions
float Exp ( float v ) #
Returns e raised to the specified power (ev ).Arguments
- float v - Power.
Return value
e raised to the specified power (ev ).double Exp ( double v ) #
Returns e raised to the specified power (ev ).Arguments
- double v - Power.
Return value
e raised to the specified power (ev ).float Exp2 ( float v ) #
Returns 2 raised to the specified power (2v ).Arguments
- float v - Power.
Return value
2 raised to the specified power (2v ).double Exp2 ( double v ) #
Returns 2 raised to the specified power (2v ).Arguments
- double v - Power.
Return value
2 raised to the specified power (2v ).float Log ( float v ) #
Returns the natural logarithm of the argument.Arguments
- float v - Argument.
Return value
Natural logarithm of the argument.double Log ( double v ) #
Returns the natural logarithm of the argument.Arguments
- double v - Argument.
Return value
Natural logarithm of the argument.float Log10 ( float v ) #
Returns the base-10 logarithm of the argument.Arguments
- float v - Argument.
Return value
Base-10 logarithm of the argument.double Log10 ( double v ) #
Returns the base-10 logarithm of the argument.Arguments
- double v - Argument.
Return value
Base-10 logarithm of the argument.float Pow ( float x, float y ) #
Returns the argument raised to the specified power (xy ).Arguments
- float x - Argument.
- float y - Power.
Return value
Argument raised to the specified power (xy ).double Pow ( double x, double y ) #
Returns the argument raised to the specified power (xy ).Arguments
- double x - Argument.
- double y - Power.
Return value
Argument raised to the specified power (xy ).double Dsqrt ( double v ) #
Returns the square root of the argument.Arguments
- double v - Argument.
Return value
Square root of the argument.float Fsqrt ( float v ) #
Returns the square root of the argument.Arguments
- float v - Argument.
Return value
Square root of the argument.float Rsqrt ( float v ) #
Returns the inverted square root of the argument.Arguments
- float v - Argument.
Return value
Inverted square root of the argument.double Rsqrt ( double v ) #
Returns the inverted square root of the argument.Arguments
- double v - Argument.
Return value
Inverted square root of the argument.Last update:
2020-07-31
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)