public static double Pow(
double x,
int n
)
Public Shared Function Pow (
x As Double,
n As Integer
) As Double
public:
static double Pow(
double x,
int n
)
static member Pow :
x : float *
n : int -> float
Low integer powers can be computed by optimized algorithms much faster than the general algorithm for an arbitrary real power employed by Pow(Double, Double).