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