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.
An n-by-n symmetric matrix.
auto m = matrix!double(3, 3); ... auto e = eigenvalues(m);
See Implementation
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.