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()
Public Function Eigenvalues As Double()
public:
array<double>^ Eigenvalues()
member Eigenvalues : unit -> float[]
Return Value
Type:
DoubleAn 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