Click or drag to resize

SymmetricMatrixEigenvalues Method

Computes the eigenvalues of the matrix.

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public double[] Eigenvalues()

Return Value

Type: Double
An array containing the matrix eigenvalues.
Remarks

If you require only the eigenvalues of the matrix, not its eigenvectors, this method will return them faster than the Eigendecomposition method. If you do need the eigenvectors as well as the eigenvalues, use the Eigendecomposition method instead.

See Also