Imaginary<T>.Exponentiation Operator

Definition

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

Overload List

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

Exponentiation(Imaginary<T>, T) Operator

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

Parameters

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

Return Value

Complex<T>
self raised to the power exponent.

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

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

Parameters

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

Return Value

Complex<T>
self raised to the power exponent.

Exponentiation(Imaginary<T>, Int32) Operator

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

Parameters

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

Return Value

Complex<T>
self raised to the power exponent.

See Also