tent map for image scrambling
2 次查看(过去 30 天)
显示 更早的评论
clc;clear;close all;
N=200;
xp=zeros(1,N);
Aa=ones(1,N);
hold on;box on;
x=0.34;
for a=0:.001:1;
for n=1:N;
x=a-(1+a)*abs(x);
end
for k=1:N;
x=a-(a+1)*abs(x);
xp(k)=x;
end
plot(Aa*a,xp,'k.','markersize',1);
end
xlim([0,a]);
xlabel('\ita','Fontsize',22,'Fontname','Times new roman');
set(gcf,'Color','w');
how to use this code for image scrambling ????please help me...
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!