Complex<T>.Exponentiation Operator

Definition

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

Overload List

Exponentiation(Complex<T>, T) Represents the exponentiation operator.
Exponentiation(Complex<T>, Complex<T>) Represents the exponentiation operator.
Exponentiation(Complex<T>, Int32) Represents the exponentiation operator.

Exponentiation(Complex<T>, T) Operator

Represents the exponentiation operator.
C#
C# does not support this operator.

Parameters

self  Complex<T>
The base.
exponent  T
The exponent.

Return Value

Complex<T>
self raised to the power exponent.

Exponentiation(Complex<T>, Complex<T>) Operator

Represents the exponentiation operator.
C#
C# does not support this operator.

Parameters

self  Complex<T>
The base.
exponent  Complex<T>
The exponent.

Return Value

Complex<T>
self raised to the power exponent.

Exponentiation(Complex<T>, Int32) Operator

Represents the exponentiation operator.
C#
C# does not support this operator.

Parameters

self  Complex<T>
The base.
exponent  Int32
The exponent.

Return Value

Complex<T>
self raised to the power exponent.

See Also