资源简介
2017年美赛B题的程序,效果非常好,完美模拟道路上的车辆行驶以及堵车状况;
可以调整车流密度,和车辆的大小
代码片段和文件信息
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
fig = plt.figure()
def f(x y):
return np.sin(x) + np.cos(y)
x = np.linspace(0 2 * np.pi 120)
y = np.linspace(0 2 * np.pi 100).reshape(-1 1)
im = plt.imshow(f(x y) cmap=plt.get_cmap(‘viridis‘) animated=True)
def updatefig(*args):
global x y
x += np.pi / 15.
y += np.pi / 20.
im.set_array(f(x y))
return im
ani = animation.FuncAnimation(fig updatefig interval=50 blit=True)
plt.show()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 533 2017-01-21 17:29 cellular\.idea\cellular.iml
文件 700 2017-01-21 17:29 cellular\.idea\misc.xm
文件 268 2017-01-20 23:42 cellular\.idea\modules.xm
文件 37486 2017-01-24 06:09 cellular\.idea\workspace.xm
文件 545 2017-01-21 00:49 cellular\animition_exm.py
文件 2450 2017-01-21 16:35 cellular\funcs.py
文件 3555 2017-01-21 16:28 cellular\funcs.pyc
文件 3903 2017-01-23 18:21 cellular\main.py
文件 707 2017-01-21 09:11 cellular\point.py
文件 1688 2017-01-21 16:27 cellular\point.pyc
文件 3522 2017-01-21 17:41 cellular\__pycache__\funcs.cpython-35.pyc
文件 1386 2017-01-21 17:41 cellular\__pycache__\point.cpython-35.pyc
目录 0 2017-01-24 06:09 cellular\.idea
目录 0 2017-01-21 17:41 cellular\__pycache__
目录 0 2017-01-23 18:21 cellular
----------- --------- ---------- ----- ----
56743 15
- 上一篇:Python二级考试试题.zip
- 下一篇:Python爬取教务系统课程表
相关资源
- Python爬取教务系统课程表
- Python二级考试试题.zip
- python实现扫描线填充算法,可以画凹
- python3 包装的httpclient,支持session
- python日期时间运算
- python实现的ping工具
- Python简版聊天室代码
- Flask-login
- 矩阵分解在MovieLens上的Python实现
- 全国840个气象站点日照时数转日总太
- python 3.6 socket传输视频
- 基于PYQT编写的人脸识别软件
- 续Python3.x+PyQtChart实现数据可视化界面
- 疯狂Python讲义习题答案.rar
- A*算法解决十五数码问题Python程序、报
- 使用python tkinter写的登陆窗口源码
- caffe_pb2.py
- LUTAI.Tools.IronPythonCheckTool
- 基于python的猜单词游戏开发
- 基于Python实现的Pagerank算法
- Python实现数据库
- 传智播客Python就业班2018.zip
- Python对爬取微博的评论进行jieba分词和
- python爬虫 破解js加密有道词典案列的
- python写的旅游网站源码
- 利用鸢尾花数据集画出P-R曲线 pytho
- pyHook-1.5.1-cp38-cp38-win_amd64.whl
- freesmallgames.zip
- python一加云相册批量爬虫
- 实战python利用线性回归来预测鲍鱼年
评论
共有 条评论