Return the decomposition of the specified symmetric matrix.
Template Parameters
T
type of input matrix.
Parameters
m
Specified matrix.
Returns
A tuple V,D where V is a matrix where the columns are the eigenvectors of m, and D is a column vector of the eigenvalues of m. The eigenvalues are in ascending order of magnitude, with the eigenvectors provided in the same order.