Available on crate feature
math only.Expand description
High level math operations.
This library provides access to math functions that require the use of the “std” feature.
Functions§
- nstd_
math_ abs_ f32 - Returns the absolute value of
x. - nstd_
math_ abs_ f64 - Returns the absolute value of
x. - nstd_
math_ acos_ f32 - Computes the arccosine of
x. - nstd_
math_ acos_ f64 - Computes the arccosine of
x. - nstd_
math_ asin_ f32 - Computes the arcsine of
x. - nstd_
math_ asin_ f64 - Computes the arcsine of
x. - nstd_
math_ atan2_ f32 - Computes the four quadrant arctangent of
x&y. - nstd_
math_ atan2_ f64 - Computes the four quadrant arctangent of
x&y. - nstd_
math_ atan_ f32 - Computes the arctangent of
x. - nstd_
math_ atan_ f64 - Computes the arctangent of
x. - nstd_
math_ ceil_ f32 - Rounds the value
xup to the closest integral value. - nstd_
math_ ceil_ f64 - Rounds the value
xup to the closest integral value. - nstd_
math_ cos_ f32 - Computes the cosine of
x. - nstd_
math_ cos_ f64 - Computes the cosine of
x. - nstd_
math_ cosh_ f32 - Computes the hyperbolic cosine of
x. - nstd_
math_ cosh_ f64 - Computes the hyperbolic cosine of
x. - nstd_
math_ floor_ f32 - Rounds the value
xdown to the closest integral value. - nstd_
math_ floor_ f64 - Rounds the value
xdown to the closest integral value. - nstd_
math_ pow_ f32 - Raises
xto an integral power. - nstd_
math_ pow_ f64 - Raises
xto an integral power. - nstd_
math_ sin_ f32 - Computes the sine of
x. - nstd_
math_ sin_ f64 - Computes the sine of
x. - nstd_
math_ sinh_ f32 - Computes the hyperbolic sine of
x. - nstd_
math_ sinh_ f64 - Computes the hyperbolic sine of
x. - nstd_
math_ sqrt_ f32 - Computes the square root of
x. - nstd_
math_ sqrt_ f64 - Computes the square root of
x. - nstd_
math_ tan_ f32 - Computes the tangent of
x. - nstd_
math_ tan_ f64 - Computes the tangent of
x. - nstd_
math_ tanh_ f32 - Computes the hyperbolic tangent of
x. - nstd_
math_ tanh_ f64 - Computes the hyperbolic tangent of
x.