Difference between revisions of "NXSL:pow"

From NetXMS Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ Calculates ''x'' raised to the power of ''y''. == Syntax == pow(''x'', ''y''); == Parameters == :{| |- | ''x'' || Initial value. |- | ''y'' || Power. |} == R...")
 
Line 10: Line 10:
== Parameters ==
== Parameters ==


:{|
:{| class="wikitable"
|-
|-
| ''x'' || Initial value.
| ''x'' || Initial value.

Revision as of 13:19, 22 November 2017

Calculates x raised to the power of y.


Syntax

pow(x, y);


Parameters

x Initial value.
y Power.


Return Value

x raised to the power of y.


Examples

pow(2, 3)	->	8