WrightTools.kit.
svd
Singular Value Decomposition.
Factors the matrix a as u * np.diag(s) * v, where u and v are unitary and s is a 1D array of a’s singular values.
u * np.diag(s) * v
Decomposed arrays in order u, v, s
tuple