| Function |
Description |
| float | Converts an integer into a floating point value. |
| floatstr | Converts a string into a floating point value. |
| floatfract | Returns the fractional part of a floating point value |
| floatround | Rounds a floating point value to an integer value |
| floatcmp | Compares two floating point values. |
| floatsqroot | Returns the square root of a floating point value |
| floatpower | Returns the value raised to the power of the exponent |
| floatlog | Returns the logarithm of value |
| floatsin | Returns the sine of a given angle |
| floatcos | Returns the cosine of a given angle |
| floattan | Returns the tangent of a given angle |
| floatsinh | Returns the hyperbolic sine of a given angle |
| floatcosh | Returns the hyperbolic cosine of a given angle |
| floattanh | Returns the hyperbolic tangent of a given angle |
| floatabs | Returns the absolute value of a floating point value |
| floatatan | Returns the angle of the given tangent |
| floatacos | Returns the angle of the given cosine |
| floatasin | Returns the angle of the given sine |
| floatatan2 | Computes the principal value of arctangent of y/x |
| floatmul | Multiply two floats together |
| floatdiv | Divide the dividend float by the divisor float |
| floatadd | Add two floats together |
| floatsub | Subtract oper2 float from oper1 float |
| floatmin | Returns whichever value is the smaller one |
| floatmax | Returns whichever value is the greater one |
| floatclamp | Clamps a value between a minimum and a maximum floating point value |