Understanding an implementation of Jacobi SVD
이전 댓글 표시
I want to understand how to complete the Jacobi SVD method that is provided, but the algorithm is stated in a confusing way... In the code skeleton, the author does not seem consistent with the algorithm. Really, my confusion is how to implement alpha, beta, and gamma, since it seems straightforward that:
c = 1/sqrt(1+t^2);
s = c*t;
V(:,i) = c*t - s*V(:,j);
V(:,j) = s*t + c*V(:,j);
toward the bottom. Can anyone provide more clarity? Thank you.
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Linear Algebra에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!