1 Star 0 Fork 1

nealliu / rrt_dynamic

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
robot.m 495 Bytes
一键复制 编辑 原始数据 按行查看 历史
Chahat Deep Singh 提交于 2017-04-27 05:04 . First Commit
% Read Robot Data:
% [A, B] = textread('H5_robot.txt', '%s %s');
function C = robot
fileID = fopen('H5_robot.txt');
C = textscan(fileID, '%f %f', 'Delimiter',',','EmptyValue', -Inf);
fclose(fileID);
%% Visualization:
%{
axis on; grid on;
axis equal;
plot(C{1}, C{2}, 'bo');
hold on;
plot(C{1}, C{2}, 'b*');
plot(C{1}, C{2}, 'b+');
% plot(C{1}, C{2}, 'b');
rectangle('Position', [-1 -0.5 2 1]);
%}
end
%{
for i = 1:size(37)
plot(A(i), B(i), 'r.');
end
%}
Matlab
1
https://gitee.com/nealliu/rrt_dynamic.git
git@gitee.com:nealliu/rrt_dynamic.git
nealliu
rrt_dynamic
rrt_dynamic
master

搜索帮助