Difference between mldivide and lsqr
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Jaehoon Jeong
am 21 Jul. 2023
Bearbeitet: Bruno Luong
am 21 Jul. 2023
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 Kommentare
Akzeptierte Antwort
Bruno Luong
am 21 Jul. 2023
Bearbeitet: Bruno Luong
am 21 Jul. 2023
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 Kommentare
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!