MatrixExtensions.GetImaginaryPart<T> Method

Returns the imaginary part of a complex matrix as a real matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Matrix<T> GetImaginaryPart<T>(
	this Matrix<Complex<T>> matrix
)

Parameters

matrix  Matrix<Complex<T>>
A complex matrix.

Type Parameters

T
The element type of the real matrix.

Return Value

Matrix<T>
A matrix with element type T containing the imaginary part of matrix.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Matrix<Complex<T>>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also