Operations<T>.Pow Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Pow(T, T) Gets a delegate that raises a number to the specified power.
Pow(T, Int32) Gets a delegate that raises a number to the specified power.

Pow(T, T)

Gets a delegate that raises a number to the specified power.
C#
public static T Pow(
	T x,
	T y
)

Parameters

x  T
 
y  T
 

Return Value

T

Pow(T, Int32)

Gets a delegate that raises a number to the specified power.
C#
public static T Pow(
	T x,
	int y
)

Parameters

x  T
 
y  Int32
 

Return Value

T

See Also