Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在matlab中反转以下内容:
[U,S,V]=svds(fulldata,columns);
引用MathWorks:
[U,S,V] = svd(X) 生成与 X 维数相同的对角矩阵 S,非负对角元素按降序排列,酉矩阵 U 和 V 使得 X = U*S*V'。
在 svds 的情况下,除非columns等于方阵的大小,否则会丢失一些信息fulldata。在这种情况下,我相信原始矩阵不能被唯一地重建。
columns
fulldata