1 Star 1 Fork 1

A.Star/pathPlanning4m

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
plotPath.m 308 Bytes
一键复制 编辑 原始数据 按行查看 历史
unknown 提交于 2017-05-30 14:37 . 新建避障路径规划算法代码
function plotPath(path,figureNum,color)
% 绘制路径
% path : n*2 矩阵,代表路径
% figureNum : 缺省值为1,绘图编号
if nargin == 1
figureNum = 1;
end
figure(figureNum)
hold on;
plot(path(:,1),path(:,2),'ro','linewidth',3);
line(path(:,1),path(:,2),'linewidth',3,'color','r')
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Matlab
1
https://gitee.com/a_star/pathPlanning4m.git
git@gitee.com:a_star/pathPlanning4m.git
a_star
pathPlanning4m
pathPlanning4m
master

搜索帮助