$RxpI: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
(Automatically generated page update)
Line 18: Line 18:
than or equal to 0, an error message is printed and a 0 is returned.
than or equal to 0, an error message is printed and a 0 is returned.


<li>{{Template:Math $functions note}}
<li>
</ul>
</ul>



Revision as of 19:33, 23 July 2015

Real base raised to integer exponent

Note: Most Sirius $functions have been deprecated in favor of Object Oriented methods. There is currently no direct OO equivalent for the $RxpI function.

The $RxpI function returns the value of its first argument raised to the power of its second argument. The second argument is initially rounded to the nearest integral value.

Syntax

%num = $RxpI(x, y)

Usage notes

  • Omitted arguments are set to 0.
  • If x equals 0, and |y| is less than or equal to 0, an error message is printed and a 0 is returned.

Examples

$rxpi(2, 3) = 23 = 8 $rxpi(.5, 1.4) = $rxpi(.5, 1) = .5