EigenvalueDecomposition<T>.RawEigenvectors Property

Gets the eigenvectors of the matrix.

Definition

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

Property Value

Matrix<T>
A matrix containing the real and imaginary components of the eigenvectors of the matrix in its columns.

Remarks

The eigenvectors are stored in the columns of the matrix. In the case of complex conjugate pairs, the real and complex part of one eigenvector are stored.

See Also