how ergodric matrix works?

1 次查看(过去 30 天)
Sultan Mehmood
Sultan Mehmood 2019-6-24
x(1)=0.27;
q=0.3;
for i=2:65736;
if x(i-1)>=0 & x(i-1)<q
x(i)=(x(i-1)/q);
elseif x(i-1)>=q & x(i-1)<=0.5
x(i)=(x(i-1)-q)/(0.5-q);
else
x(i)=(1-x(i-1));
end
end
N=201;
X=[x(N:end)];
L=65536;
flag=zeros(1,L);
T = num2cell(randperm(65536, 65536));
T=flag;
for i=1:65536
j(i)=mod(floor(X(i)*10^15),L)+1;
if (j==i)|(flag(j)==1)
j(i)=mod(floor(X(i)*10^15),L)+1;
else
flag(j)=1; T=j;
end
end
is it fine.?
why the value of 'j' and T are same?

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Read, Write, and Modify Image 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by