1 Star 1 Fork 1

Cybaster / all_calibration

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
model.m 605 Bytes
一键复制 编辑 原始数据 按行查看 历史
Cybaster 提交于 2023-10-02 18:10 . complete
close all; clear; clc;
%% theoretical model
d1 = 0.089159; d4 = 0.10915; d5 = 0.09465; d6 = 0.0823;
a3 = 0.425; a4 = 0.39225;
Alpha = [0, -pi/2, 0, 0, pi/2, -pi/2];
A = [0, 0, a3, a4, 0, 0];
D = [d1, 0, 0, d4, d5, d6];
Theta = [0, -pi/2, 0, pi/2, 0, 0];
Sigma = [1, 1, 1, 1, 1, 1];
for i = 1:6
L(i) = Link('alpha',Alpha(i),'a', A(i),'d', D(i));L(i).offset = Theta(i); L(i).qlim=[-pi, pi];L(i).mdh = 1;
end
robot = SerialLink(L, 'name', 'UR');
DH_Para.Alpha = Alpha;
DH_Para.A = A;
DH_Para.D = D;
DH_Para.Theta = Theta;
DH_Para.Sigma = Sigma;
n = 100;
Q = rand(n, 6) * 2 * pi - pi;
model_actual;
1
https://gitee.com/chaomingsanhua/all_calibration.git
git@gitee.com:chaomingsanhua/all_calibration.git
chaomingsanhua
all_calibration
all_calibration
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891