Elementary.Pow Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

Pow(Double, Int32) Returns a number raised to an integer power.
Pow(Single, Int32) Returns a number raised to an integer power.
Pow<T>(T, Int32) Returns a number raised to an integer power.

Pow(Double, Int32)

Returns a number raised to an integer power.
C#
public static double Pow(
	double x,
	int n
)

Parameters

x  Double
A real number.
n  Int32
An integer exponent.

Return Value

Double
The real number raised to the specified exponent.

Remarks

Raising a number to an integer power is orders of magnitude faster than raising a number to a real power. If you know the exponent is an integer, use this method instead of the Pow(Double, Double) method of Math.

Pow<T>(T, Int32)

Returns a number raised to an integer power.
C#
public static T Pow<T>(
	T x,
	int n
)

Parameters

x  T
A real number.
n  Int32
An integer exponent.

Type Parameters

T

Return Value

T
The real number raised to the specified exponent.

Remarks

Raising a number to an integer power is orders of magnitude faster than raising a number to a real power. If you know the exponent is an integer, use this method instead of the Pow(Double, Double) method of Math.

Pow(Single, Int32)

Returns a number raised to an integer power.
C#
public static float Pow(
	float x,
	int n
)

Parameters

x  Single
A real number.
n  Int32
An integer exponent.

Return Value

Single
The real number raised to the specified exponent.

Remarks

Raising a number to an integer power is orders of magnitude faster than raising a number to a real power. If you know the exponent is an integer, use this method instead of the Pow(Double, Double) method of Math.

See Also