$RxpR: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision: from DME w/ love)
m (minor formatting)
 
(12 intermediate revisions by 7 users not shown)
Line 1: Line 1:
<span class="pageSubtitle">Real base raised to real exponent</span>
<span class="pageSubtitle">Real base raised to real exponent</span>
<p class="warning">Most Sirius $functions have been deprecated in favor of Object Oriented
<p class="warn"><b>Note:</b> Many $functions have been deprecated in favor of Object Oriented
methods. There is currently no direct OO equivalent for the <var>$RxPR</var> function.</p>
methods. There is currently no direct OO equivalent for the <var>$RxpR</var> function.</p>
[[Category: Mathematical $functions]]
<p>
</p>


The <var>$RxPR</var> function returns the value of its first
The <var>$RxpR</var> function returns the value of its first argument raised to the power of its second argument.
argument raised to the power of its second argument.


==Syntax==
==Syntax==
<p class="syntax"><span class="term">%num</span><span class="literal"> = $RxPR(</span><span class="term">x</span><span class="literal">)</span>  </p>
<p class="syntax"><span class="term">%num</span><span class="literal"> = $RxpR(</span><span class="term">x</span><span class="literal">,</span> <span class="term">y</span><span class="literal">)</span>  </p>


If either of the following is true,
==Usage notes==
<ul>
<li>If either of the following is true,
an error message is printed and a 0 is returned:
an error message is printed and a 0 is returned:
<ul>
<ul>
<li>''x'' is less than zero.
<li>''x'' is less than zero.
<li>''x'' equals 0, and ''y'' is less than or equal to 0.
<li>''x'' equals 0, and ''y'' is less than or equal to 0.
</ul></li>
<li>If the result of the <var>$RxpR</var> call exceeds 7.237 x 10<sup>75</sup>, then an arithmetic overflow occurs, and <var>$RxpR</var> returns the value 0. </li>
</ul>
</ul>


For example:
==Examples==
<p class="code"> $RXPR(9, 2) = 9&'sup(2) = 81
<p class="code">$rxpr(9, 2) = 9<sup>2</sup> = 81


$RXPR(64, .5) = 8
$rxpr(64, .5) = 8


$RXPR(256, .25) = 4
$rxpr(256, .25) = 4
</p>
</p>


{{Template:Math $functions note}}
[[Category: Mathematical $functions]]

Latest revision as of 17:08, 2 January 2018

Real base raised to real exponent

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

The $RxpR function returns the value of its first argument raised to the power of its second argument.

Syntax

%num = $RxpR(x, y)

Usage notes

  • If either of the following is true, an error message is printed and a 0 is returned:
    • x is less than zero.
    • x equals 0, and y is less than or equal to 0.
  • If the result of the $RxpR call exceeds 7.237 x 1075, then an arithmetic overflow occurs, and $RxpR returns the value 0.

Examples

$rxpr(9, 2) = 92 = 81 $rxpr(64, .5) = 8 $rxpr(256, .25) = 4