hry.m
来自「针对移动机械臂运动学」· M 代码 · 共 21 行
M
21 行
function hr = hry (b,o)%HRY(ANGLE) or HRY(ANGLE,"OPTION") Homogeneous Rotation over Y-axis.%July ~ December 2005, by Reinaldo M. do Nascimentotry,b=mod(b,2*pi);o=0;catch,o=1;end cb = cos(b); sb = sin(b);if nargin==2 & o==0 if abs(cb) <= eps cb=0; end if abs(sb) <= eps sb=0; endend hr = [cb 0 sb 0 0 1 0 0 -sb 0 cb 0 0 0 0 1];
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?