Imaginary<T>.Pow Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Pow( | Returns an imaginary number raised to the specified power. |
Pow( | Returns an imaginary number raised to the specified power. |
Pow( | Returns an imaginary number raised to the specified integer power. |
Pow(Imaginary<T>, T)
Returns an imaginary number raised to the specified
power.
public static Complex<T> Pow(
Imaginary<T> z,
T a
)
Parameters
Return Value
Complex<T>A complex number that equals a raised to the power a.
Pow(Imaginary<T>, Imaginary<T>)
Returns an imaginary number raised to the specified
power.
public static Complex<T> Pow(
Imaginary<T> z1,
Imaginary<T> z2
)
Parameters
Return Value
Complex<T>A complex number that equals z1 raised to the power z2.
Remarks
This method requires that the operand type supports real arithmetic.
Pow(Imaginary<T>, Int32)
Returns an imaginary number raised to the specified
integer power.
public static Complex<T> Pow(
Imaginary<T> z,
int n
)
Parameters
Return Value
Complex<T>A complex number that equals z raised to the power n.
Remarks
An integer power of an imaginary number is either real or imaginary.
This method requires that the operand type supports multiplication. If n is less than zero, it must also support division.