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