Complex<T>.Imaginary Method

Constructs a complex number that has a purely imaginary value.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static Complex<T> Imaginary(
	T imaginaryPart
)

Parameters

imaginaryPart  T
The imaginary part of the complex number.

Return Value

Complex<T>
A complex value representing the number iimaginaryPart.

See Also