lsqminnorm- Tolerance to Reduce Impact of Noisy Data

조회 수: 2 (최근 30일)
hugozhao
hugozhao 2020년 9월 9일
답변: Christine Tobler 2020년 9월 10일
Hello everyone,
I'm trying to solve a unterdetermined linear system: Ax=b.
x = lsqminnorm(A,b);
Setting Rank tolerance, can help prevent the solution from being susceptible to random noise in the coefficient matrix A. But dose it work the same way, if I have noise in b instead of A?
Also in the description of 'lsqminnorm', section "Specify Tolerance to Reduce Impact of Noisy Data", they say:
lsqminnorm is treating small values on the diagonal of the R matrix in the QR decomposition of A as being more important than they are.
Anybody can give a more detailed explaination?
Thanks

답변 (1개)

Christine Tobler
Christine Tobler 2020년 9월 10일
The tolerance in lsqminnorm should be used if you expect your matrix A to be of low rank up to a tolerance. That is, for rank k, the singular values k+1, k+2, ... will all be smaller than some tolerance tol.
In that case, a call to lsqminnorm(A, b, tol) is qualitatively similar to calling pinv(A, tol) * b to compute x using only the low-rank part of this matrix A. The difference when calling lsqminnorm is that this is usually faster, because it internally uses the QR decomposition instead of the SVD decomposition.
If the right-hand side is also affected by noise, lsqminnorm and pinv are not the right tools to take this into account.

카테고리

Help CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by