9 Star 55 Fork 16

Nrush / EKF_SLAM

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
gen_trajectory2d.m 285 Bytes
一键复制 编辑 原始数据 按行查看 历史
Nrush 提交于 2019-08-29 11:23 . init
function [ data ] = gen_trajectory2d( t )
% 根据时间产生运动轨迹
% t - step
% data - 产生的 x y
% radius = 1;
% data = [cos(radius*t)+cos(2*t*radius);4*sin(radius*t)+4*sin(t*radius)];
% data = data + 16;
radius = 40;
data = [radius*cos(t);radius*sin(t)];
data = data + radius+6;
end
Matlab
1
https://gitee.com/nrush/EKF_SLAM.git
git@gitee.com:nrush/EKF_SLAM.git
nrush
EKF_SLAM
EKF_SLAM
master

搜索帮助