我正在尝试仅使用平稳小波变换的水平系数来重建输入图像。
[A,H,V,D ] = swt2(x,1,'sym4');
A = 0; V = 0; D = 0; %i am setting other co-efficents to zero since i am only intersted in the values of H %
Y = iswt2(A,H,V,D,'sym4') ; %this gives the following error below%
iswt2/reconsLOC
(第 153 行) 中的错误ca(sR,sC)
,ch(sR,sC,k)
,cv(sR,sC,k)
,cd(sR,sC,k)
, ... (第 122 行)
中的错误iswt2
a = reconsLOC(a,h,v,d);
我该如何解决这个问题?