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.
(optional) A buffer for the returned values, must have length >= n and type Complex!T[].
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.