log2( double ) double
Returns the base-2 logarithm of a floating-point number.
Example Usage:
log2( double ) double
Returns the base-2 logarithm of a floating-point number.
Example Usage:
log10( double ) double
Returns the base-10 logarithm of a floating-point number.
Example Usage:
sin( double ) double
Returns the sine of a floating-point number.
Example Usage:
cos( double ) double
Returns the cosine of a floating-point number.
Example Usage:
tan( double ) double
Returns the tangent of a floating-point number.
Example Usage:
asin( double ) double
Returns the arcsine of a floating-point number.
Example Usage:
acos( double ) double
Returns the arccosine of a floating-point number.
Example Usage:
atan( double ) double
Returns the arctangent of a floating-point number.
Example Usage:
sqrt( double ) double
Returns the square root of a floating-point number.
Example Usage:
pow( numeric, double ) double
Returns the value of a number raised to the power of another number.
Example Usage:
abs( numeric ) (double/int)
Returns the absolute value of a number.
Example Usage:
phase( complex ) double
Returns the phase of a complex number.
Example Usage:
ceil( double ) int
Returns the smallest integer greater than or equal to a floating-point number.
Example Usage:
floor( double ) int
Returns the largest integer less than or equal to a floating-point number.
Example Usage:
round( double ) int
Returns the value of a floating-point number rounded to the nearest integer.
Example Usage:
pi( ) double
Returns the value of the mathematical constant π.
Example Usage:
sfc( ) int
Random number generator using Sfc64.
Example Usage:
rand( ) double
Returns a random floating-point number in the range [0, 1).
Example Usage:
randn( ) double
Returns a random floating-point number from a normal distribution with mean 0 and standard deviation 1.
Example Usage: