ToIntegerPower and ToPower (Float functions): Difference between revisions
Jump to navigation
Jump to search
m (match syntax diagram to template; fix tags and links) |
m (→Syntax terms) |
||
Line 14: | Line 14: | ||
<tr><th>float</th> | <tr><th>float</th> | ||
<td>A Float value. </td></tr> | <td>A Float value. </td></tr> | ||
<tr><th> | <tr><th>exponent</th> | ||
<td>A Float value, which is rounded to the nearest integer.</td></tr> | <td>A Float value, which is rounded to the nearest integer. The method object <var class="term>float</var> is raised to the power of that rounded value.</td></tr> | ||
</table> | </table> | ||
Revision as of 18:46, 8 February 2011
Raise number to an integer power (Float class)
The ToPower and ToIntegerPower intrinsic functions return a number that is the method object value "raised to the power" specified by the method argument. The argument value is initially rounded to the nearest integral value.
ToPower is a synonym for ToIntegerPower.
Syntax
%number = float:ToIntegerPower( exponent)
%number = float:ToPower( exponent)
Syntax terms
%number | A numeric variable to contain the method result. |
---|---|
float | A Float value. |
exponent | A Float value, which is rounded to the nearest integer. The method object float is raised to the power of that rounded value. |
Usage notes
- If float is 0 and number is less than or equal to 0, the request is cancelled.
- ToPower / ToIntegerPower is available as of "Sirius Mods" Version 7.3
Examples
- The following statement returns '
3:toPower(5) = 243
'.printText {~} = {3:toPower(5)}
- The following statement returns '
-.1:toPower(2.8) is -0.001
'.printText {~} is {-.1:toPower(2.8)}
- The following statement returns '
2:toIntegerPower(-2.2) is 0.25
'.printText {~} is {2:toIntegerPower(-2.2)}
See also
- ToPower / ToIntegerPowerare object-oriented versions of the $RXPI function.