I have 37 linear equations and 36 variables in the form of a matrix equation; A*X=B . The equations don't have an exact answer. I want to use Matlab least square method to find the answers with the least error. I am new to Matlab so any comments will help. Thank you
How to use least squares method in Matlab?
10.5k Views Asked by nasim At
3
If
A
is of full rank, i.e. the columns ofA
are linearly independent, the least-squares solution of an overdetermined system of linear equationscan be found by inverting the normal equations (see Linear Least Squares):
If
A
is not of full rank,A' * A
is not invertible. Instead, one can use the pseudoinverse ofA
or Matlab's left-division operator
Both give the same solution, but the left division is more computationally efficient.
The two latter computation methods can also deal with underdetermined systems of linear equations, but they give different solutions in that case: The pseudoinverse gives the solution where
x
has the smallest sum of squares, while the left-division operator gives a solution with as many 0 coefficients as possible.