Logistic-burification.png(568 × 393 ピクセル、ファイルサイズ: 60キロバイト、MIME タイプ: image/png)

解説
English: Burification diagram of a logistic map Released by the author (en:User:Ap) into the public domain.

Generation scripts

Here are some en:GNU Octave scripts to experiment with the generation of en:bifurcation diagrams for the en:logistic map.

r_min = 2.5; r_max = 4; # the range of parameter values we study
n = 1000; # the number of parameter values we consider in this range

t_max = 1000; # how many iterations to simulate per parameter value
p_max = 100; # the last p_max iterations are plotted

x0 = 0.1; # we use the same initial value x0 for all parameters.

r = linspace(r_min, r_max, n);
pop = zeros(p_max, n);

for k = 1:n
  x = population(r(k), x0, t_max);
  pop(:, k) = x(t_max-p_max+1:t_max);
end

gset nokey;
plot(r, pop, 'b.');

function x =  population(r, x0, n)
# simulates n iterations of the logistic map with parameter
# r and initial value x0. The results are returned in the
# array x.
  x = zeros(n, 1);
  x(1) = x0;
  for k = 1:n-1
    x(k + 1) = r * x(k) * (1 - x(k));
  end
endfunction
Deutsch: Bifurkationsdiagramm der logistischen Gleichung
日付 2003年7月3日 (当初のアップロード日)
原典 en.wikipedia からコモンズに Sfan00_IMG によって CommonsHelper を用いて移動されました。
作者 英語版ウィキペディアApさん

ライセンス

Public domain この著作物は、著作者である英語版ウィキペディアApさんによって権利が放棄され、パブリックドメインとされました。これは全世界で適用されます。
一部の国では、これが法的に可能ではない場合があります。その場合は、次のように宣言します。
Apは、あらゆる人に対して、法により必要とされている条件を除き、如何なる条件も課すことなく、あらゆる目的のためにこの著作物を使用する権利を与えます。

元のアップロードログ

元のファイルページはこちら。以下の利用者は全てen.wikipediaに属します。
  • 2003-07-03 07:28 Nate Silva 568×393× (60960 bytes) shrunk with pngcrush
  • 2002-09-01 18:24 Ap 568×393× (117287 bytes) Burification diagram of a logistic map
  • 2002-09-01 18:19 Ap 2479×3508× (107003 bytes) Burification diagram of a logistic map

キャプション

このファイルの内容を1行で記述してください

このファイルに描写されている項目

題材

3 7 2003

ファイルの履歴

過去の版のファイルを表示するには、その版の日時をクリックしてください。

日付と時刻サムネイル寸法利用者コメント
現在の版2009年3月28日 (土) 22:192009年3月28日 (土) 22:19時点における版のサムネイル568 × 393 (60キロバイト)File Upload Bot (Magnus Manske) {{BotMoveToCommons|en.wikipedia|year={{subst:CURRENTYEAR}}|month={{subst:CURRENTMONTHNAME}}|day={{subst:CURRENTDAY}}}} {{Information |Description={{en|Burification diagram of a logistic map Released by the author (en:User:Ap) into the public domain

以下のページがこのファイルを使用しています:

グローバルなファイル使用状況

以下に挙げる他のウィキがこの画像を使っています: