in matlab inverse of matlab can be written:
For least squares ( more efficient)
x = A\b.--------------------------------1
But for covariance matrix (Qxx) of unknown paramters(x), I usually do,
Qxx==inv(A) --------------------------2
How I can write it in efficient way like (1)?