• 大小: 7KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-03
  • 语言: Matlab
  • 标签: matlab  

资源简介

matlab实现元胞自动机仿真代码

资源截图

代码片段和文件信息

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%A Two-Lane Cellular Automaton Traffic Flow Model with the Keep-Right Rule
%edited by Milky ZhangImage Information Institute in Sichuan Universiyt 2014/2/14
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
clc;
clear all;
close all;

B=2;             %The number of the lanes
plazalength=50;  %The length of the simulating highways
h=NaN;           %h is the handle of the image


[plazav]=create_plaza(Bplazalength);
h=show_plaza(plazah0.1);

iterations=1000;    % 迭代次数
probc=0.1;          % 车辆的密度
probv=[0.1 1];      % 两种车流的密度分布
probslow=0.3;       % 随机慢化的概率
Dsafe=1;            % 表示换道事车至少与后面车距离多少个单位才算安全
VTypes=[12];       %道路上一共有几种最大速度不同的车辆速度是什么
[plazavvmax]=new_c

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-02-10 14:08  cellular automata\
     文件        1390  2017-01-22 13:45  cellular automata\cellular.m
     文件         148  2014-08-09 23:31  cellular automata\create_plaza.m
     文件         260  2017-01-21 22:49  cellular automata\leadcarupdate.m
     文件        1386  2014-08-09 23:30  cellular automata\move_forward.m
     文件        1786  2014-08-09 23:30  cellular automata\new_cars.m
     文件        1782  2014-08-09 23:30  cellular automata\para_count.m
     文件         341  2014-08-09 23:30  cellular automata\random_slow.m
     文件         214  2017-01-21 22:00  cellular automata\randslow.m
     文件         310  2015-01-09 13:28  cellular automata\Readme.txt
     文件         326  2017-01-21 22:00  cellular automata\searchleadcar.m
     文件         604  2014-08-09 23:30  cellular automata\show_plaza.m
     文件         267  2017-01-21 22:00  cellular automata\speedstart.m
     文件        1747  2014-08-09 23:30  cellular automata\switch_lane.m

评论

共有 条评论