加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
robo.m 441 Bytes
一键复制 编辑 原始数据 按行查看 历史
narasimhareddy04 提交于 2020-04-16 12:44 . Add files via upload
function robo(T)
% Input 4x4 Matrix
% [T(0,0,0) [x;y;z];0 0 0 1];
%function T(theta1,theta2,theta3)
%Returns a 3x3 rotation matrix.
%theta1=rotation about x-axis in radians
%theta2=rotation about y-axis in radians
%theta3=rotation about z-axis in radians
%e.g [T(0,0,0) [0;0;10];0 0 0 1];
x0=[0.1,0.01,0.01,-0.5,0.01,0.01];
xSol=fsolve(@(x) InvKinematics(x,T),x0);
roboarm(xSol(1),xSol(2),xSol(3),xSol(4),xSol(5),xSol(6));
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化