Does eigen decomposition exist in the library?

In principle the methods I’ve linked give you access to the BLAS methods for eigenvector and eigenvalue computation.

The JavaDoc says that the input matrix will be modified to hold the eigenvectors. So you get two outputs effectively. The return value, which holds eigenvalues and the modification of the input matrix which now holds the eigenvectors.

1 Like