WHEN I AM RUNNING THIS CODE I AM GETTING FOLLOWING ERROR
1 view (last 30 days)
Show older comments
function [p,s] = perdecomp(u)
[ny,nx] = size(u);
u = double(u);
X = 1:nx;
Y = 1:ny;
v = zeros(ny,nx);
v(1,X) = u(1,X)-u(ny,X);
v(ny,X) = -v(1,X);
v(Y,1 ) = v(Y,1 )+u(Y,1)-u(Y,nx);
v(Y,nx) = v(Y,nx)-u(Y,1)+u(Y,nx);
fx = repmat(cos(2.*pi*(X -1)/nx),ny,1);
fy = repmat(cos(2.*pi*(Y'-1)/ny),1,nx);
fx(1,1)=0.; % avoid division by 0 in the line below
s = real(ifft2(fft2(v)*0.5./(2.-fx-fy)));
p = u-s;
Arrays have incompatible sizes for this operation.
Error in perdecomp (line 17)
p = u-s;
0 Comments
Accepted Answer
VBBV
on 20 Jul 2022
u = rand(1,5) % assume a matrix values
[p,s]= perdecomp(u) % call the function giving input matrix u
function [p,s] = perdecomp(u)
[ny,nx] = size(u);
u = double(u);
X = 1:nx;
Y = 1:ny;
v = zeros(ny,nx);
v(1,X) = u(1,X)-u(ny,X);
v(ny,X) = -v(1,X);
v(Y,1 ) = v(Y,1 )+u(Y,1)-u(Y,nx);
v(Y,nx) = v(Y,nx)-u(Y,1)+u(Y,nx);
fx = repmat(cos(2.*pi*(X -1)/nx),ny,1);
fy = repmat(cos(2.*pi*(Y'-1)/ny),1,nx);
fx(1,1)=0.; % avoid division by 0 in the line below
s = real(ifft2(fft2(v)*0.5./(2.-fx-fy)));
p = u-s;
end
Give input vector when calling function perdecomp
More Answers (0)
See Also
Categories
Find more on Encryption / Cryptography in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!