资源简介
整理了关于元胞自动机的一些资料。包含对于元胞自动机的介绍,分析,及大量matlab以供参考,对于初学或有一定了解的人都具有一定意义。也可以用于数学建模之中,作为一种思考问题的方法。
代码片段和文件信息
%Conway‘s life with GUI
clf
clear all
%=============================================
%build the GUI
%define the plot button
plotbutton=uicontrol(‘style‘‘pushbutton‘...
‘string‘‘Run‘ ...
‘fontsize‘12 ...
‘position‘[1004005020] ...
‘callback‘ ‘run=1;‘);
%define the stop button
erasebutton=uicontrol(‘style‘‘pushbutton‘...
‘string‘‘Stop‘ ...
‘fontsize‘12 ...
‘position‘[2004005020] ...
‘callback‘‘freeze=1;‘);
%define the Quit button
quitbutton=uicontrol(‘style‘‘pushbutton‘...
‘string‘‘Quit‘ ...
‘fontsize‘12 ...
‘position‘[3004005020] ...
‘callback‘‘stop=1;close;‘);
number = uicontrol(‘style‘‘text‘ ...
‘string‘‘1‘ ...
‘fontsize‘12 ...
‘position‘[204005020]);
%=============================================
%CA setup
n=128;
%initialize the arrays
z = zeros(nn);
cells = z;
sum = z;
%set a few cells to one
cells(n/2.25*n:.75*n) = 1;
cells(.25*n:.75*nn/2) = 1;
%cells(.5*n-1.5*n-1)=1;
%cells(.5*n-2.5*n-2)=1;
%cells(.5*n-3.5*n-3)=1;
cells = (rand(nn))<.5 ;
%how long for each case to stability or simple oscillators
%build an image and display it
imh = image(cat(3cellszz));
set(imh ‘erasemode‘ ‘none‘)
axis equal
axis tight
%index definition for cell update
x = 2:n-1;
y = 2:n-1;
%Main event loop
stop= 0; %wait for a quit button push
run = 0; %wait for a draw
freeze = 0; %wait for a freeze
while (stop==0)
if (run==1)
%nearest neighbor sum
sum(xy) = cells(xy-1) + cells(xy+1) + ...
cells(x-1 y) + cells(x+1y) + ...
cells(x-1y-1) + cells(x-1y+1) + ...
cells(3:ny-1) + cells(x+1y+1);
% The CA rule
cells = (sum==3) | (sum==2 & cells);
%draw the new image
set(imh ‘cdata‘ cat(3cellszz) )
%update the step number diaplay
stepnumber = 1 + str2num(get(number‘string‘));
set(number‘string‘num2str(stepnumber))
end
if (freeze==1)
run = 0;
freeze = 0;
end
drawnow %need this in the loop for controls to work
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-01-31 17:03 元胞自动机\
目录 0 2018-01-21 15:06 元胞自动机\1月13日课件(元胞自动机)\
文件 283389 2009-01-12 23:17 元胞自动机\1月13日课件(元胞自动机)\元胞自动机在数学模型中的应用.pdf
目录 0 2018-01-21 15:06 元胞自动机\1月13日课件(元胞自动机)\程序\
目录 0 2018-01-21 15:06 元胞自动机\1月13日课件(元胞自动机)\程序\The Booth Tolls for Thee\
文件 1478 2008-01-23 21:01 元胞自动机\1月13日课件(元胞自动机)\程序\The Booth Tolls for Thee\cellular.m
文件 135 2007-12-23 12:27 元胞自动机\1月13日课件(元胞自动机)\程序\The Booth Tolls for Thee\clear_boundary.m
文件 126 2007-12-23 12:27 元胞自动机\1月13日课件(元胞自动机)\程序\The Booth Tolls for Thee\compute_output.m
文件 137 2007-12-23 12:25 元胞自动机\1月13日课件(元胞自动机)\程序\The Booth Tolls for Thee\compute_wait.m
文件 521 2008-01-23 20:30 元胞自动机\1月13日课件(元胞自动机)\程序\The Booth Tolls for Thee\create_entry.m
文件 939 2007-12-23 12:26 元胞自动机\1月13日课件(元胞自动机)\程序\The Booth Tolls for Thee\create_plaza.m
文件 1215 2007-12-28 07:55 元胞自动机\1月13日课件(元胞自动机)\程序\The Booth Tolls for Thee\move_forward.m
文件 259 2008-01-23 20:20 元胞自动机\1月13日课件(元胞自动机)\程序\The Booth Tolls for Thee\new_cars.m
文件 1107 2007-12-28 08:00 元胞自动机\1月13日课件(元胞自动机)\程序\The Booth Tolls for Thee\switch_lanes.asv
文件 1106 2007-12-28 08:00 元胞自动机\1月13日课件(元胞自动机)\程序\The Booth Tolls for Thee\switch_lanes.m
文件 17 2009-01-13 20:30 元胞自动机\1月13日课件(元胞自动机)\程序\The Booth Tolls for Thee\说明.txt
文件 2226 2007-12-26 16:10 元胞自动机\1月13日课件(元胞自动机)\程序\calife.m
文件 860 2012-02-09 11:16 元胞自动机\1月13日课件(元胞自动机)\程序\forest.asv
文件 965 2012-02-09 14:10 元胞自动机\1月13日课件(元胞自动机)\程序\forest.m
目录 0 2018-01-21 15:06 元胞自动机\1月13日课件(元胞自动机)\程序\新建文件夹\
目录 0 2018-01-21 15:06 元胞自动机\1月13日课件(元胞自动机)\程序\新建文件夹\HMCMCM\
文件 69334 2012-02-09 08:36 元胞自动机\1月13日课件(元胞自动机)\程序\新建文件夹\HMCMCM\blank-template.pdf
文件 57740 2012-02-09 08:36 元胞自动机\1月13日课件(元胞自动机)\程序\新建文件夹\HMCMCM\blank-template.synctex
文件 6839 2012-02-09 08:26 元胞自动机\1月13日课件(元胞自动机)\程序\新建文件夹\HMCMCM\blank-template.tex
文件 282182 2012-02-09 08:37 元胞自动机\1月13日课件(元胞自动机)\程序\新建文件夹\HMCMCM\icmmcm-sample.pdf
文件 1032110 2012-02-09 08:37 元胞自动机\1月13日课件(元胞自动机)\程序\新建文件夹\HMCMCM\icmmcm-sample.synctex
文件 61966 2012-02-09 08:26 元胞自动机\1月13日课件(元胞自动机)\程序\新建文件夹\HMCMCM\icmmcm-sample.tex
文件 5346 2012-02-09 08:27 元胞自动机\1月13日课件(元胞自动机)\程序\新建文件夹\HMCMCM\icmmcm.bib
文件 3870 2012-02-09 08:27 元胞自动机\1月13日课件(元胞自动机)\程序\新建文件夹\HMCMCM\icmmcm.cls
文件 996 2012-02-09 08:27 元胞自动机\1月13日课件(元胞自动机)\程序\新建文件夹\HMCMCM\shapes.pdf
文件 11174 2012-02-09 08:27 元胞自动机\1月13日课件(元胞自动机)\程序\新建文件夹\HMCMCM\shapes.ps
............此处省略23个文件信息
相关资源
- Robotics Toolbox 10.3.1 matlab机器人工具箱
- 2020研究生数学建模——大雾能见度估
- Matlab神经网络原理与精讲
- 数学建模方法与分析大全
- Matlab关于人工神经网络在预测中的应
- MATLAB在数学建模中的应用【卓金武】
- Matlab_robotic_toolbox.rar
- MATLAB车道线识别程序及车道线识别测
- MATLAB数学建模与仿真_14084650.pdf
- Matlab在数学建模中的应用
- 数学建模:层次分析法一致性检验M
- 配套文件_MATLAB数学建模方法与实践第
- MATLAB优化算法案例分析与应用(进阶
- MATLAB数学建模经典案例实战pdf版+代码
- MATLAB层次分析法源程序
- 数学建模真题matlab编程 MATLAB数学建
- 灰色关联分析法MATLAB实现
- 数学建模MATLAB必备的程序源代码
- 基于元胞自动机的交通事故影响下车
- matlab数学建模工具箱.rar
- MATLAB数学建模工具箱
- 手写数字的识别。基于人工神经网络
- matlab机器人工具箱实现机械臂直线轨
- 基于元胞自动机的人员疏散研究matl
- ANN人工神经网络的matlab实现
- MATLAB 元胞自动机交通流双车道
- 2018年数学建模国赛A题matlab代码及注释
- 2017年数学建模国赛B题matlab代码及注释
- 2016年全国数学建模A题matlab代码.rar
- 人工萤火虫算法
评论
共有 条评论