How to implement the following?

15 Ansichten (letzte 30 Tage)
Sabarinathan Vadivelu
Sabarinathan Vadivelu am 28 Aug. 2012
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 Kommentare
Walter Roberson
Walter Roberson am 28 Aug. 2012
What does C [a;b] mean in this context ?
Sabarinathan Vadivelu
Sabarinathan Vadivelu am 28 Aug. 2012
Thats the function of chaotic map.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 28 Aug. 2012
Bearbeitet: Azzi Abdelmalek am 28 Aug. 2012
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

Weitere Antworten (0)

Kategorien

Mehr zu Mathematics and Optimization finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by