EigenvalueDecomposition<T>.ComplexEigenvalues Property

Gets the eigenvalues of the matrix as a complex vector.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public virtual Vector<Complex<T>> ComplexEigenvalues { get; protected set; }

Property Value

Vector<Complex<T>>
A complex vector containing the eigenvalues of the matrix.

Remarks

This property is meaningful only for real matrices. If the element type is complex, then the Eigenvalues property is already a complex vector.

See Also