• 大小: 1006B
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-07
  • 语言: Matlab
  • 标签: NaSch模型  

资源简介

本程序根据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

评论

共有 条评论