You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I am trying to obtain the lowest eigenvalue of a sparse hermitian matrix with one or more zero pivots.
For example, my matrix has the following form:
.
When I execute the “eigs” function for the above matrix, I get the following error message:
energy, ψ = eigs(ham, nev=1, which=:SM)
LoadError: ZeroPivotException: factorization encountered one or more zero pivots. Consider switching to a pivoted LU factorization.
ZeroPivotException: factorization encountered one or more zero pivots. Consider switching to a pivoted LU factorization.
According to the massage, it suggest the use of a pivoted LU factorization, can I chose it?
If not, is this designed with a purpose?
It would be nice to have it work for matrices that contain zero pivots.
The text was updated successfully, but these errors were encountered:
Hi, I am trying to obtain the lowest eigenvalue of a sparse hermitian matrix with one or more zero pivots.
For example, my matrix has the following form:
.
When I execute the “eigs” function for the above matrix, I get the following error message:
According to the massage, it suggest the use of a pivoted LU factorization, can I chose it?
If not, is this designed with a purpose?
It would be nice to have it work for matrices that contain zero pivots.
The text was updated successfully, but these errors were encountered: