IOperations<T>.Pow Method

Definition

Namespace: Numerics.NET.Generic
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#
T Pow(
	T x,
	T y
)

Parameters

x  T
 
y  T
 

Return Value

T

Pow(T, Int32)

Raises a number to the specified power.
C#
T Pow(
	T x,
	int y
)

Parameters

x  T
 
y  Int32
 

Return Value

T

See Also