-
Notifications
You must be signed in to change notification settings - Fork 4
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
How to use own low rank types for A and B #2
Comments
At the moment
|
Issues are the best place to have these types of conversations, thanks for posting! |
Thanks a lot for the clarification. Do you have any future plans to further develop the capabilities of I dont think its particularly clear from the description that |
No concrete plans, so I would love to have help! The feature I want most is for representing inverses of banded matrices as
This was just quickly thrown together (hence v0.0.1).
Right, we can always return _two_arguments(A,B) = (A,B)
_two_arguments(A,B, C...) = (A, ApplyMarix(*, B, C...))
two_arguments(A) = _two_arguments(arguments(A)...) |
I have only worked with symmetric extended generator representable semiseparable matrices (symmetric EGRSS matrices) which have the form
That was exactly what i was thinking. I dont know any particulars of the |
Note https://github.com/JuliaMatrices/LowRankApprox.jl which has a lot of low rank approximations. The only reason I'm not using that is I needed support for views of a low rank matrix to also conform to the "low rank interface", which is true for I should unify this a bit better. |
I was wondering which operations do you need to have implemented for
A
andB
in order to use your implementation?Sorry if this should not be posted as an issue. Im pretty new to GitHub.
The text was updated successfully, but these errors were encountered: