登录
首页 » matlab » 经典建模论文

经典建模论文

于 2020-06-16 发布 文件大小:1203KB
0 224
下载积分: 1 下载次数: 0

代码说明:

  通过较多的数据,求出路段最短路径,并进行分区,画出图(Through more data, find the shortest path of the exit section, and partition, draw a map.)

文件列表:

A区路线图.pdf, 63943 , 2018-12-25
附件.该城区各交通节点数据处理.xlsx, 295576 , 2018-12-25
附件1_A区和全市六区交通网络示意图.doc, 106496 , 2018-12-09
全城六区的路线图以及由六区中心到Q点的最短路径.pdf, 156847 , 2018-12-25
数学建模B期末论文 (1).docx, 823161 , 2019-08-19

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • libsvm的说明
    说明:  libsvm的svmtrain与svmpredict的各个参数的含义(The meaning of libsvm's svmtrain and svmpredict's parameters)
    2018-06-08 11:05:04下载
    积分:1
  • 10MW风力机叶片设计及在随机风载荷下的响应分析
    说明:  对大型风力机柔性叶片的设计方法及其在随机风载荷作用下的动态响应与载荷特性进行了研究。根据风力 机叶片空气动力学和结构设计理论,将柔性叶片离散为多个刚体,形成一个多体系统。根据多体动力学的建模方法 和叶片气动模型,考虑两者的相互作用,建立了柔性叶片的非线性耦合动力学方程并开发了相应的仿真程序。算例 分析了叶片在随机风载荷作用下的气弹载荷与随机振动响应,并对稳定风速和紊流风速下的响应结果作了对比分析(This paper presented a design method of the flexible blade and its dynamic response under random wind. The flexible blade was discretized into multiple rigid bodies, and the multi-body system was established according to the theory of aerodynamics and the structural design of the blade. The nonlinear aeroelastic coupling equations of a constrained flexible blade are derived by the dynamics of multi-body system theory and the blade aerodynamics model, and the simulation program was developed. The examples analyzed time-domain responses of the blade under stable and turbulent wind speed, and the results were compared under these two kinds of wind speed.)
    2020-01-06 11:22:01下载
    积分:1
  • VB6.0鼠标点击器-连点器代码
    VB6.0鼠标点击器-连点器代码,鼠标自动点击程序,注册全局热键,在主窗体的Form_Initialize事件中添加InitCommonControlsVB语句,可定义鼠标左键或右键连续点击,或者定义是否是模拟双击,可设置连续点击的频率和类型,程序运行界面如测试截图所示。
    2022-03-29 12:05:55下载
    积分:1
  • nunyie
    真的是一个好程序,有借鉴意义哦,采用累计贡献率的方法。( Really is a good program, There are reference Oh, The method of cumulative contribution rat.)
    2016-07-31 00:16:10下载
    积分:1
  • VC compiler error problem solution. For example: LNK2001 resolve external symbol...
    VC编译出错的问题解决方法。比如:LNK2001解决外部符号错误,链接错误unresolved external symbol _main的解决-VC compiler error problem solution. For example: LNK2001 resolve external symbols error, link error unresolved external symbol _main solution
    2023-01-31 08:05:04下载
    积分:1
  • Java中的Canvas绘图源码实例
    Java中的Canvas绘图源码实例,主要是画线条、弧线、圆角矩形、三角形、文字、圆形等简单的几何图形,主要是通过创建DrawingCanvas对象canvas,为canvas设置命令监听者,实现接口CommandListener的方法,把缓冲区图像的内容绘制到画布上,画图部分代码:   int w = getWidth(); // 画布的宽度   int h = getHeight(); // 画布的高度   Image buffer = Image.createImage(w, h); // 用于绘图的缓冲图像   Graphics gc = buffer.getGraphics(); // 获取缓冲图像的图形环境   // 清除画布   public void clearScreen() {    gc.setColor(255,255,255); // 设置绘图颜色为白色    gc.fillRect(0,0,w,h); // 把缓冲图像填充为白色    gc.setColor(255,0,0); // 设置绘图颜色为红色   }   // 绘制直线   public void drawLine() {    setTitle("直线"); // 设置画布的标题    clearScreen(); // 清除画布    gc.drawLine(10,10,w-20,h-20); // 绘制黑色直线    gc.setColor(0,0,255); // 设置绘图颜色为蓝色    gc.drawLine(10,h/2,w-10,h/2); // 绘制蓝色直线   }   // 绘制弧   public void drawArc() {    setTitle("弧线和填充弧");    clearScreen();    gc.drawArc(5,5,w/2-20,h/2-20,60,216); // 绘制弧线    gc.drawArc(5,h/2-10,w/2-20,h/2-20,0,360); // 绘制圆    gc.setColor(0,0,255);    gc.fillArc(w/2,5,w/2-20,h/2-20,60,216); // 绘制填充弧线    gc
    2023-04-11 05:50:03下载
    积分:1
  • 第4章 蛮力法
    说明:  蛮力法(man li fa)
    2019-06-10 10:51:33下载
    积分:1
  • stm32图像采集+QT上位机源码
    说明:  stm32图像采集上位机源码,来源于网络平台,仅供学习而用(STM32 image acquisition host computer source code, from the network platform, only for learning)
    2020-05-11 12:59:20下载
    积分:1
  • 英飞凌XMC4000系列标准库
    应用背景Infineon公司开发的XMC4000系列标准库。你可以使用这个库•编程。关键技术这是英飞凌XMC4000系列微控制器的标准库。这个库用C++语言写的。
    2022-03-19 08:17:19下载
    积分:1
  • 根据光伏电池的数学模型搭建的Simulink仿真模型 PV_MPPT
    根据光伏电池的数学模型搭建的Simulink仿真模型,MPPT算法采用的是基于占空比可调的扰动观察法,仿真结果表明该算法能够很好地跟踪最大功率点。(The model is established in Simulink based on the mathematical model of photovoltaic cell. Disturbance observation method based on adjustable duty cycle. It is proved that MPPT can be realized by using this method.)
    2017-06-16 15:39:59下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载