• 大小: 13KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-14
  • 语言: Matlab
  • 标签: matlab  美赛  

资源简介

这个是我在参加2017年数学建模美赛时,做B题用的代码,里面加入了一些我自己的理解,方便大家学习。

资源截图

代码片段和文件信息

function [plaza v time departurescount departurestime] = clear_boundary(plaza v time)
%
% clear_boundary  remove the cars of the exit cell
%
% USAGE: [plaza v time departurescount departurestime] = clear_boundary(plaza v time)
%        plaza = plaza matrix
%                1 = car 0 = empty -1 = forbid -3 = empty&booth
%        v = velocity matrix
%        time = time matrix to trace the time that the car cost to pass the plaza.

departurescount = 0;
departurestime = [];
[ab] = size(plaza);
for i = 2:a-1
    if plaza(ib) > 0
        departurescount = departurescount + 1;
        departurestime(departurescount) = time(ib);
        plaza(ib) = 0;
        v(ib) = 0;
        time(ib) = 0;
    end
end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-06-16 16:57  元胞自动机实现高速公路收费站matlab代码\
     文件         750  2017-01-21 14:30  元胞自动机实现高速公路收费站matlab代码\clear_boundary.m
     文件         649  2017-01-21 19:12  元胞自动机实现高速公路收费站matlab代码\create_plaza1.m
     文件         776  2017-01-21 19:23  元胞自动机实现高速公路收费站matlab代码\create_plaza2.m
     文件         915  2017-01-24 07:16  元胞自动机实现高速公路收费站matlab代码\main1.m
     文件         895  2017-01-23 23:14  元胞自动机实现高速公路收费站matlab代码\main2.m
     文件         706  2017-01-24 03:40  元胞自动机实现高速公路收费站matlab代码\main3.m
     文件         961  2017-01-24 00:22  元胞自动机实现高速公路收费站matlab代码\main4.m
     文件        1018  2017-01-24 08:24  元胞自动机实现高速公路收费站matlab代码\main5.m
     文件         900  2017-01-24 07:28  元胞自动机实现高速公路收费站matlab代码\main6.m
     文件        2220  2017-01-21 23:11  元胞自动机实现高速公路收费站matlab代码\move_forward.m
     文件         898  2017-01-21 15:39  元胞自动机实现高速公路收费站matlab代码\new_cars.m
     文件         913  2017-01-21 01:00  元胞自动机实现高速公路收费站matlab代码\show_plaza.m
     文件        1723  2017-01-21 21:56  元胞自动机实现高速公路收费站matlab代码\simulationPlaza.m
     文件        1725  2017-01-21 20:45  元胞自动机实现高速公路收费站matlab代码\simulationPlaza2.m
     文件        1834  2017-01-22 03:10  元胞自动机实现高速公路收费站matlab代码\simulationPlaza3.m
     文件        2766  2017-01-21 22:02  元胞自动机实现高速公路收费站matlab代码\switch_lanes.m
     文件        5025  2017-01-21 21:36  元胞自动机实现高速公路收费站matlab代码\switch_lanes2.m
     文件         965  2017-01-23 22:45  元胞自动机实现高速公路收费站matlab代码\代码解释.txt

评论

共有 条评论