-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lu(A) is not banded #382
Comments
Can you give code? |
For context, I'm doing a 1D boundary value problem solver using an integral formulation. It might be super case specific, so I'm giving exactly how I'm generating the matrix. So L is a standard matrix and U is banded. I have tried doing lu(G, NoPivot()), but that generates 2 standard matrices
|
Just post the output |
Sure, I changed Nr = 7, so have a smaller output. I think its just not using the lu from BandedMatrices?
|
So I went through the source code, and it seems that the LU decomposition is fine, but it seems that is not on how the L factor is computed for display reasons? |
that sounds right a PR would be appreciated |
I ran into a problem using |
I have a matrix with band with (2,2), but when I do lu(A), the L matrix is not banded. It seems its because the subdiagonals are too big so LU prefers to do some scrabling around. Is there a way to avoid this problem (should I even care?)
The text was updated successfully, but these errors were encountered: