Complex<T>.Exponentiation Operator

Definition

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

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