Azzera filtri
Azzera filtri

kindly explain the shuffling method of henon map?

2 visualizzazioni (ultimi 30 giorni)
Wajid
Wajid il 18 Dic 2022
Modificato: Jan il 18 Dic 2022
[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

Risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by