GingerBread_Man iterated chaotic map with parameters. Attractor explorer.

버전 1.1.0.0 (2.21 KB) 작성자: Héctor Corte
This is the Gingerbreadman map with parameters to explore variations over the original attractor.
다운로드 수: 660
업데이트 날짜: 2012/10/23

라이선스 보기

ginger Is a function for plot gingerBread map [1] [2] [3].

The gingerbreadman map is given by the trnasformation:

(1)
x(i) = 1 - a*y(i-1) + b*abs(x(i-1));
y(i) =x(i-1);

In original form a=1 and b=1. here we can change these parameters to explore diferent atractors.

INPUTS:
a = This is the a parameter on ecuation (1)
b = This is the b parameter on ecuation (1)
numiterations = This set the number of iterations of ecuation (1)

Example (1):

ginger(1.40,1,10000)

Example (2):

We can take frames and create a movie showing the evolution

for i=1:1500
ginger(2*(i-1)/1500,1,2000)
axis([-20,20,-20,20])
M(i)=getframe(gcf)
end

movie(M)

I uploaded that movie to youtube:
http://www.youtube.com/watch?v=5k18BuEES34

References:
[1] Loren on the Art of MATLAB, "Pretty 2-Dimensional Chaotic Maps",
http://blogs.mathworks.com/loren/2011/12/07/pretty-2-dimensional-cha
otic-maps/

[2] Wikipedia, "Gingerbread Map",
http://en.wikipedia.org/wiki/Gingerbreadman_map

[3] Adam Wachsman "Gingerbreadman chaotic 2D map",
http://www.mathworks.com/matlabcentral/fileexchange/34116

This function was written by :
Héctor Corte
B.Sc. in physics 2010
Battery Research Laboratory
University of Oviedo
Department of Electrical, Computer, and Systems Engineering
Campus de Viesques, Edificio Departamental 3 - Office 3.2.05
PC: 33204, Gijón (Spain)
Phone: (+34) 985 182 559
Fax: (+34) 985 182 138
Email: cortehector@uniovi.es

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

인용 양식

Héctor Corte (2024). GingerBread_Man iterated chaotic map with parameters. Attractor explorer. (https://www.mathworks.com/matlabcentral/fileexchange/34820-gingerbread_man-iterated-chaotic-map-with-parameters-attractor-explorer), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2010a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Mapping Toolbox에 대해 자세히 알아보기
커뮤니티
 Power Electronics Control 커뮤니티에 더 많은 파일이 있습니다

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.1.0.0

Just change in name to make it more exact and to people looking for it more simple to find it.

1.0.0.0