NXSL:pow

From NetXMS Wiki
Revision as of 23:24, 21 April 2012 by Victor (talk | contribs) (Created page with "__NOTOC__ Calculates ''x'' raised to the power of ''y''. == Syntax == pow(''x'', ''y''); == Parameters == :{| |- | ''x'' || Initial value. |- | ''y'' || Power. |} == R...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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