Functions | |
---|---|
cbrt | number |
cube | z |
cube-root | z |
hypot | x y |
hypot3 | x y z |
square | z |
square-root | rs-math::z |
Return the cube root of NUMBER. If NUMBER is a real number, value is the real cube root of NUMBER.
Return the distance between a point and the origin in a two-dimensional Cartesian coordinate system. Arguments X and Y have to be real numbers.
Return the distance between a point and the origin in a three-dimensional Cartesian coordinate system. Arguments X, Y, and Z have to be real numbers.
Return Z squared, that is Z raised to the power two. Argument Z has to be a number.
Return the square root of Z. Argument Z has to be a number. The `square-root' function attempts to propagate the type of the argument Z to its value.
Return Z cubed, that is Z raised to the power three. Argument Z has to be a number.