摘要: Python编程实践卡尔曼滤波 import numpy as np # 模拟数据 t = np.linspace(1,100,100) a = 0.5 position = (a * t**2)/2 position_noise = position+np.random.normal(0,120, 阅读全文
posted @ 2021-04-21 16:30 门前塘 阅读(2) 评论(0) 推荐(0)
摘要: 注意:以下命令是在win10系统pycharm中的terminal中执行 生成requirement.txt文件 pip freeze > requirement.txt 查看requirement.txt type requiremenr.txt 批量安装requirement.txt中的包 pi 阅读全文
posted @ 2021-04-21 10:20 门前塘 阅读(1) 评论(0) 推荐(0)