  | NMathFunctionsPow(Single, Int32) Method | 
            Calculates the result of raising a floating point number to
            an integer power.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static float Pow(
	float f,
	int n
)
Public Shared Function Pow ( 
	f As Single,
	n As Integer
) As Single
public:
static float Pow(
	float f, 
	int n
)
static member Pow : 
        f : float32 * 
        n : int -> float32 Parameters
- f  Single
 - A floating point number.
 - n  Int32
 - An integer exponent.
 
Return Value
SingleThe result of raising 
f to the 
n power.
See Also