Difference between mldivide and lsqr
조회 수: 12 (최근 30일)
이전 댓글 표시
Hi, I am curious about the difference between mldivide and lsqr.
Both seem to be used for calculating x where A*x=b.
Thank you in advance.
댓글 수: 0
채택된 답변
Bruno Luong
2023년 7월 21일
편집: Bruno Luong
2023년 7월 21일
A=rand(3,5)
b=rand(3,1)
The backslash returns a solution with most 0s and lsqr returns solution with minimum l2-norm.
xbackslash=A\b
xlsqr=lsqr(A,b)
xminnorm=lsqminnorm(A,b)
A*xbackslash
A*xlsqr
norm(xbackslash)
norm(xlsqr) % smaller even xlsqr has no O
On the runtime the backslash is usualy faster, at least for dense matrix.
댓글 수: 0
추가 답변 (0개)
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!