Difference between mldivide and lsqr
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jaehoon Jeong
el 21 de Jul. de 2023
Editada: Bruno Luong
el 21 de Jul. de 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 comentarios
Respuesta aceptada
Bruno Luong
el 21 de Jul. de 2023
Editada: Bruno Luong
el 21 de Jul. de 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 comentarios
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!