eigenvalues

Calculate the eigenvalues of a general dense square matrix.

If some eigenvalues cannot be calculated, the algorithm throws an EigenvalueException containing an array of the ones that have been calculated.

Parameters

m MatrixView!(ElementT, stor, tri)

An n-by-n symmetric matrix.

Examples

auto m = matrix!double(3, 3);
...
auto e = eigenvalues(m);

Meta