I'm trying to use SVD to estimate the solution for non-square matrix of linear equations.
My matrix is of the 8 x 6
shape.
I calculated the following parameters using:
U, sigma, VT = np.linalg.svd(mat)
Now, I am suggested to take a column from V with the smallest the corresponding value in S, and that should be the solution to my 6 parameters that I'm trying to determine with 8 equations.
Can somebody please help?
Thanks