-
How do i find eigenvalues and eigenvectors of a sparse matrix? I have little knowledge of the history of matrices, so i find the names ldl and csc and so on to be kind of confusing. I figured out how to create a TriMat, and how to convert said TriMat into a Ldl, but cannot figure out how to get the eigenvalues and vectors from it. Would be great if there was an example on how to do this in the docs. Alternatively can someone point me in the right direction? The matrix needs to be sparse, but is not tridiagonal |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
There is no one-size-fits-all when it comes to eigendecomposition, and we have not implemented any methods for finding the eigenvalues/vectors. You likely want to use lapack or the like to take advantage of a known good library |
Beta Was this translation helpful? Give feedback.
There is no one-size-fits-all when it comes to eigendecomposition, and we have not implemented any methods for finding the eigenvalues/vectors. You likely want to use lapack or the like to take advantage of a known good library