HermitianMatrix<T>.GetEigenvalues Method

Gets a vector containing the eigenvalues of the matrix.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public DenseVector<T> GetEigenvalues()

Return Value

DenseVector<T>
A DenseVector<T> containing the eigenvalues of the matrix.

Remarks

The eigenvalues of a real Hermitian matrix are always real.

See Also