COLOR(red){SIZE(30){RでCA(セルオートマトン)}}
#contents
*パッケージ
*パッケージ [#s0899171]
**[[simecol:http://www.tu-dresden.de/fghhihb/petzoldt/modlim/]]
[[チュートリアル(Konstruktion oekologischer Modelle mit R(R を利用した生態学モデルの構築), ドイツ語):http://www.tu-dresden.de/fghhihb/petzoldt/zeugs.html]], [[RNews の英語要約:http://cran.r-project.org/doc/Rnews/Rnews_2003-3.pdf]]
**[[simecol:http://www.tu-dresden.de/fghhihb/petzoldt/modlim/]] [#wa98452f]
-[[チュートリアル(Konstruktion oekologischer Modelle mit R(R を利用した生態学モデルの構築), ドイツ語):http://www.tu-dresden.de/fghhihb/petzoldt/zeugs.html]], [[RNews の英語要約:http://cran.r-project.org/doc/Rnews/Rnews_2003-3.pdf]]
-[[Dynamical systems in R with simecol:http://lamages.blogspot.jp/2012/06/dynamical-systems-in-r-with-simecol.html]]
- Conway の古典的なライフゲーム
[[simecol(生態学シミュレーション)パッケージ中のオブジェクト一覧]]
**利用例
**利用例 [#i2e62d9e]
***ライフゲーム
***ライフゲーム [#jae9c12d]
パッケージのロード
library(simecol)
シミュレーションの実行
data(conway)
plot(simulate(conway))
m <- matrix(0, 40, 40)
m[5:35,19:21] <-1
init(conway) <- m
sim(conway, animate=TRUE, delay=100, col=c("white", "green"), axes=FALSE)
**山火事のシミュレーション
**山火事のシミュレーション [#geebba32]