IRDYn/codegen/standard_regressor_R1000_DVT.m

16 lines
485 B
Mathematica
Raw Normal View History

2024-10-25 14:34:21 +00:00
function standard_regrssor = standard_regressor_R1000_DVT(theta,dtheta,ddtheta)
opt.robot_def = 'direct';
opt.KM_method = 'SCREW';
opt.Vel_method = 'Direct';
opt.LD_method = 'Direct';
opt.debug = false;
opt.robotName = 'R1000_EVT';
opt.reGenerate = false;
opt.Isreal = true;
file=[];
robot = get_robot_R1000(theta,dtheta,ddtheta,file,opt);
robot = get_Kinematics(robot, opt);
robot = get_velocity(robot, opt);
robot = get_regressor(robot, opt);
standard_regrssor = robot.regressor.K;