Operations<T>.Pow Method

Definition

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

Overload List

Pow(T, T) Raises a number to the specified power.
Pow(T, Int32) Raises a number to the specified power.

Pow(T, T)

Raises a number to the specified power.
C#
public static T Pow(
	T left,
	T right
)

Parameters

left  T
 
right  T
 

Return Value

T

Pow(T, Int32)

Raises a number to the specified power.
C#
public static T Pow(
	T left,
	int right
)

Parameters

left  T
 
right  Int32
 

Return Value

T

See Also