필터 지우기
필터 지우기

kindly explain the shuffling method of henon map?

조회 수: 2 (최근 30일)
Wajid
Wajid 2022년 12월 18일
편집: Jan 2022년 12월 18일
[m,n]=size(A);
a = 3;
b = 3;
num_iter = 5;
for k=1:num_iter
for i=1:m
for j=1:n
r = mod([round((1-(a*(i^2))+j)),round((b*i))],[m n]);
S_img(i,j)=A(r(1)+1,r(2)+1);
end
end
A=S_img;
end

답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by