-
-
Notifications
You must be signed in to change notification settings - Fork 11
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
Function to compute an estimate of the 1-norm and 2-norm of a matrix #232
Comments
Forgive my ignorance, but what is norm estimation for a matrix? |
I'm not sure either, but this tag seems safe. |
@mfasi I don't think we have this in Base, but if you'd be interested in implementing it then I'd suggest making a package first, and the discussion about moving it into Base or not can come at a later date. |
Yes, this seems like something to start out in a package. |
I've already implemented two different randomized norm estimators in IterativeSolvers.jl. You're more than welcome to contribute other estimates. See also #41 |
I'm sorry, it looks like it was impossible to understand what I wanted to do. I reworded the title and the first post and will provide a few more details here. I wanted to implement something much like the functions Sorry for the misunderstanding, I hope I made myself clear this time. 😊 |
Yes, we don't have those particular norm estimators implemented and they would be nice to have. As iterative algorithms, they could belong in IterativeSolvers.jl. |
As far as I could see, there are no functions in Julia to estimate the 1-norm and 2-norm of matrices, which is incredibly useful when working with large and sparse matrices. Provided that the functionality is actually missing, is there some reason why it hasn't been implemented yet? If that's not the case, I'd be happy to work on the issue.
The text was updated successfully, but these errors were encountered: