资源简介
本程序根据1992年Nagel和Schreckenberg发表的交通流论文,利用matlab编写。采用周期性边界条件,希望有所帮助
代码片段和文件信息
classdef car properties
x
v
qianche
flag
end
properties(Dependent)
dis
end
methods
function dis = get.dis(obj)
if obj.flag == 0
dis = obj.qianche.x - obj.x;
else
dis = 100 + obj.qianche.x - obj.x;
end
end
end
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1930 2015-10-26 20:58 yuanbaozidongji.m
文件 386 2015-10-26 13:59 car.m
- 上一篇:8qam星座图
- 下一篇:Mann-Kendall突变检验函数-Matlab代码
评论
共有 条评论