Complex<T>.GetImaginaryPart Method

Returns an array of Doubles that contains the imaginary parts of an array of complex numbers.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static T[] GetImaginaryPart(
	Complex<T>[] sourceArray
)

Parameters

sourceArray  Complex<T>[]
An array of complex numbers.

Return Value

T[]
A T array that contains the imaginary parts of the complex numbers in sourceArray.

Exceptions

ArgumentNullExceptionsourceArray is null.

See Also