note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
floatsqroot
warning
This function starts with a lowercase letter.
Description
Calculates the square root of given value.
Name | Description |
---|---|
Float:value | The value to calculate the square root of. |
Returns
The square root of the input value, as a float.
Examples
new Float:sqroot = floatsqroot(25.0); // Returns 5.0, because 5x5 = 25
Notes
tip
This function raises a “domain” error if the input value is negative. You may use floatabs to get the absolute (positive) value.
Related Functions
- floatpower: Raises given value to a power of exponent.
- floatlog: Get the logarithm of the float value.