+1 888 340 6572

Power: Difference between revisions

From MultiCharts
(Created page with "Returns the value of one specified numerical expression to the power of another. ==== Usage ==== <syntaxhighlight>Power(Base,Exponent)</syntaxhighlight> Where: Base -...")
 
mNo edit summary
 
Line 1: Line 1:
Returns the value of one specified numerical expression to the power of another.   
Returns the value of one specified numerical expression to the power of another.   


==== Usage ====
== Usage ==
<syntaxhighlight>Power(Base,Exponent)</syntaxhighlight>  
<syntaxhighlight>Power(Base, Exponent);</syntaxhighlight>  


Where: [[Base]] - a numerical expression
Where:  
 
:'''Base''' - a numerical expression.
              
              
[[Exponent]] - a numerical expression  
:'''Exponent''' - a numerical expression.
   
   
==== Example ====
== Example ==
<syntaxhighlight>Power(5,3) will return a value of 125</syntaxhighlight>
<syntaxhighlight>Power(5, 3);</syntaxhighlight>
Will return a value of 125.
   
   
[[Category:Math and Trig]]
[[Category:Math and Trig]]

Latest revision as of 06:35, 9 February 2012

Returns the value of one specified numerical expression to the power of another.

Usage

Power(Base, Exponent);

Where:

Base - a numerical expression.
Exponent - a numerical expression.

Example

Power(5, 3);

Will return a value of 125.