Ikeda map

Ikeda map

In mathematics, an Ikeda map is a discrete-time dynamical system given by

: x_{n+1} = 1 + u (x_n cos t_n - y_n sin t_n), ,

: y_{n+1} = u (x_n sin t_n + y_n cos t_n), ,

where "u" is a parameter and

: t_n = 0.4 - frac{6}{1+x_n^2+y_n^2}.

For some values of "u", this system has a chaotic attractor.

Attractor

This shows how the attractor of the system changes as the parameter u is varied from 0.0 to 1.0 in steps of 0.01. The Ikeda dynamical system is simulated for 500 steps, starting from 20000 randomly placed starting points. The last 20 points of each trajectory are plotted to depict the attractor. Note the bifurcation of attractor points as u is increased.

Point trajectories

The plots below show trajectories of 200 random points for various values of u. The inset plot on the left shows an estimate of the attractor while the inset on the right shows a zoomed in view of the main trajectory plot.

MATLAB code for point trajectories

The MATLAB code to generate these plots is given below:

% u = ikeda parameter% option = what to plot% 'trajectory' - plot trajectory of random starting points% 'limit' - plot the last few iterations of random starting pointsfunction ikeda(u, option)

P = 200;%how many starting pointsN = 1000;%how many iterationsNlimit = 20; %plot these many last points for 'limit' option

x = randn(1,P)*10;%the random starting pointsy = randn(1,P)*10;

for n=1:P, X = compute_ikeda_trajectory(u, x(n), y(n), N); switch option case 'trajectory' %plot the trajectories of a bunch of points plot_ikeda_trajectory(X);hold on; case 'limit' plot_limit(X, Nlimit); hold on; otherwise disp('Not implemented'); endend

axis tight; axis equaltext(-25,-15, ['u = ' num2str(u)] );text(-25,-18, ['N = ' num2str(N) ' iterations'] );

% Plot the last n points of the curve - to see end point or limit cyclefunction plot_limit(X,n)plot(X(end-n:end,1),X(end-n:end,2),'ko');

% Plot the whole trajectoryfunction plot_ikeda_trajectory(X)plot(X(:,1),X(:,2),'k');%hold on; plot(X(1,1),X(1,2),'bo','markerfacecolor','g'); hold off

%u is the ikeda parameter%x,y is the starting point%N is the number of iterationsfunction [X] = compute_ikeda_trajectory(u, x, y, N)

X = zeros(N,2);X(1,:) = [x y] ;

for n = 2:N t = 0.4 - 6/(1 + x^2 + y^2); x1 = 1 + u*(x*cos(t) - y*sin(t)) ; y1 = u*(x*sin(t) + y*cos(t)) ; x = x1; y = y1; X(n,:) = [x y] ; end


Wikimedia Foundation. 2010.

Игры ⚽ Нужно сделать НИР?

Look at other dictionaries:

  • Ikeda — (jap. 池田 Ikeda, wörtlich „Reisfeld am Teich“) ist ein japanischer Familien und Ortsname. Ikeda ist der Name folgender Orte: Ikeda (Ōsaka), einer Stadt in der Präfektur Ōsaka Die folgenden Kleinstädte Ikeda (池田町; Ikeda chō oder Ikeda machi) Ikeda… …   Deutsch Wikipedia

  • Ikeda — is a Japanese surname and place name, literally meaning rice paddy by the pond .Place names* the city of Ikeda, Osaka (Japanese: 池田市; Ikeda shi ) in Osaka Prefecture, Japan * any of the following towns named Ikeda (Japanese: 池田町; ikeda cho or… …   Wikipedia

  • Ikeda, Osaka — Infobox City Japan Name= Ikeda JapaneseName= 池田市 Map Region= Kansai Prefecture= Osaka District= Area km2= 22.09 PopDate= April 2008 Population= 104,314 Density km2= 4720 Coords= LatitudeDegrees= 34 LatitudeMinutes= 49 LatitudeSeconds=… …   Wikipedia

  • Cruel Map of Women's Bodies — Theatrical poster for Cruel Map of Women s Bodies (1967) Directed by Masanao Sakao[ …   Wikipedia

  • List of chaotic maps — In mathematics, a chaotic map is a map that exhibits some sort of chaotic behavior. Maps may be parameterized by a discrete time or a continuous time parameter. Discrete maps usually take the form of iterated functions. Chaotic maps often occur… …   Wikipedia

  • Chaos theory — This article is about chaos theory in Mathematics. For other uses of Chaos theory, see Chaos Theory (disambiguation). For other uses of Chaos, see Chaos (disambiguation). A plot of the Lorenz attractor for values r = 28, σ = 10, b = 8/3 …   Wikipedia

  • Liste de fractales par dimension de Hausdorff — Cet article est une liste de fractales, ordonnées par dimension de Hausdorff croissante. En mathématiques, une fractale est un ensemble dont la dimension de Hausdorff (notée δ) est strictement supérieure à la dimension topologique[1]. Sommaire 1… …   Wikipédia en Français

  • List of mathematics articles (I) — NOTOC Ia IA automorphism ICER Icosagon Icosahedral 120 cell Icosahedral prism Icosahedral symmetry Icosahedron Icosian Calculus Icosian game Icosidodecadodecahedron Icosidodecahedron Icositetrachoric honeycomb Icositruncated dodecadodecahedron… …   Wikipedia

  • japan — japanner, n. /jeuh pan /, n., adj., v., japanned, japanning. n. 1. any of various hard, durable, black varnishes, originally from Japan, for coating wood, metal, or other surfaces. 2. work varnished and figured in the Japanese manner. 3. Japans,… …   Universalium

  • Japan — /jeuh pan /, n. 1. a constitutional monarchy on a chain of islands off the E coast of Asia: main islands, Hokkaido, Honshu, Kyushu, and Shikoku. 125,716,637; 141,529 sq. mi. (366,560 sq. km). Cap.: Tokyo. Japanese, Nihon, Nippon. 2. Sea of, the… …   Universalium

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”