-
-
Notifications
You must be signed in to change notification settings - Fork 13
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
inv
is broken for Bidiagonal
#173
Comments
Would be resolved by JuliaLang/julia#8240 |
@tkelman I don't think JuliaLang/julia#8240 is enough here. Bidiagonal matrices in LAPACK's band layout doesn't cover our present However, an |
Using lapack for bidiagonal (or tridiagonal) is pretty pointless and should not be held sacred here. I'd rather have a generic system than go out of our way to support an "optimized" path that doesn't actually matter for performance. |
I think that such a system would be great, but I also think that it is bit more than what JuliaLang/julia#8240 proposes. |
Note that the inverse of Bidiagonal will be in general Triangular. |
Oh right, duh, no need to convert to Tridiagonal. Just define |
Also not implemented: multiplying Bidiagonal and a dense matrix |
This fails in
factorize
:Ex
The text was updated successfully, but these errors were encountered: