How to Reconstruct Image after decomposition using SVD

i have decomposed my image using svd... and modified the singular values by adding matrix let Say A. How can I get back this matrix A..
For Example:
m=[1 2 3; 4 5 6; 7 8 9];
[u s v]= svd(m);
A=[0 2 1; 3 5 6; 8 9 4];
sw= s+A;
new= u*sw*v;
Now how can I get back my matrix A from matrix new?
Is there any way please help me out...

1 个评论

Dear Muhammad i think you can try something like
m=[1 2 3; 4 5 6; 7 8 9];
[u s v]= svd(m);
A=[0 2 1; 3 5 6; 8 9 4];
sw= s+A;
new= u.*sw.*v;
GetBackA = [new./(u.*v)]-s
Result
GetBackA =
0 2.0000 1.0000
3.0000 5.0000 6.0000
8.0000 9.0000 4.0000
i hope it will help you..

请先登录,再进行评论。

回答(0 个)

类别

帮助中心File Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by