eigenvalues

Calculate the eigenvalues of a triangular matrix. Note that this is a trivial operation - the function just returns the diagonal entries of the matrix.

Parameters

m MatrixView!(T, stor, tri)

An n-by-n triangular matrix.

buffer T[]

(optional) A buffer for the returned values, must have length >= n.

Meta