How to implement the following?

조회 수: 2 (최근 30일)
Sabarinathan Vadivelu
Sabarinathan Vadivelu 2012년 8월 28일
How can I implement the following?
x(k + 1)= C [x(k); μ] = x(k)/μ ,if x(k) [0, μ)
(x(k)−μ)/(0.5−μ) , if x(k) [μ, 0.5)
C [1 − x(k); μ] , if x(k) [0.5, 1)
and k = 0,1,2,...n and 0<μ<0.5
  댓글 수: 2
Walter Roberson
Walter Roberson 2012년 8월 28일
What does C [a;b] mean in this context ?
Sabarinathan Vadivelu
Sabarinathan Vadivelu 2012년 8월 28일
Thats the function of chaotic map.

댓글을 달려면 로그인하십시오.

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2012년 8월 28일
편집: Azzi Abdelmalek 2012년 8월 28일
x=rand(10,1);mu=randi(49,1,1)/100+0.0001% example
for k=1:length(x)-1
if x(k)>=0 & x(k)<mu
x(k+1)=x(k)/mu
elseif x(k)>=mu & x(k)<0.5
x(k+1)=(x(k)-mu)/(0.5-mu)
elseif x(k)>=0.5 & x(k)<1
x(k+1)=(1-x(k))/mu
end
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by