the m-by-n matrix to deflate/decompose (algorithm requires m >= n)
Factor matrix 'aa' into the product of a matrix of left singular vectors 'uu', a vector of singular values 's' and a matrix of right singular vectors 'vv' such that 'aa = uu ** s * vv.t'.
Show the flaw by printing the error message.
Show the flaw by printing the error message.
the method where the error occurred
the error message
The
SVD
class is used to compute the Singlar Value Decomposition (SVD) of matrix 'aa' using the Golub-Kahan-Reinsch Algorithm. Decompose matrix 'aa' into the product of three matrices:aa = uu * a * vv.t
where 'uu' is a matrix of orthogonal eigenvectors of 'aa * aa.t' (LEFT SINGULAR VECTORS) 'vv' is a matrix of orthogonal eigenvectors of 'aa.t * aa' (RIGHT SINGULAR VECTORS) and 'a' is a diagonal matrix of square roots of eigenvalues of 'aa.t * aa' &' aa * aa.t' (SINGULAR VALUES).