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
Would it be possible to add something similar to LinearAlgebra.opnorm for the spectral norm of a matrix A ?
The function would essentially compute the largest singular value of A, I suppose we can do something with the iterative methods from this repo ?
I might try to open a PR if this sounds possible/good ?
The text was updated successfully, but these errors were encountered:
I know some iterative algorithms to compute the maximum eigenvalue of a symmetric matrix.
You can use it to compute the maximum singular value if you apply it on A'A.
Would it be possible to add something similar to
LinearAlgebra.opnorm
for the spectral norm of a matrixA
?The function would essentially compute the largest singular value of
A
, I suppose we can do something with the iterative methods from this repo ?I might try to open a PR if this sounds possible/good ?
The text was updated successfully, but these errors were encountered: