SquareRoot (Float function): Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
m (1 revision) |
||
Line 9: | Line 9: | ||
===Syntax terms=== | ===Syntax terms=== | ||
<table class="syntaxTable"> | <table class="syntaxTable"> | ||
<tr><th>%value </th> | <tr><th>%value</th> | ||
<td>A variable to receive the square root of the method object. </td></tr> | <td>A variable to receive the square root of the method object. </td></tr> | ||
<tr><th>number </th> | <tr><th>number</th> | ||
<td>A Float value.</td></tr> | <td>A Float value.</td></tr> | ||
</table> | </table> |
Revision as of 15:49, 19 January 2011
Square root of a number (Float class)
This intrinsic function returns a number that is the square root of the method object.
An attempt to get the square root of a negative number results in request cancellation.
SquareRoot is available as of version 7.2 of the Sirius Mods.
Syntax
%number = float:SquareRoot
Syntax terms
%value | A variable to receive the square root of the method object. |
---|---|
number | A Float value. |
Examples
The following displays the square root of 3.14159:
printText {3.14159:squareroot}
The following displays the square root of the number in %x:
printText {%x:squareroot}
See also
List of intrinsic Float methods