23 lines
503 B
Matlab
23 lines
503 B
Matlab
close all;clc;clear
|
|
file = [];
|
|
opt.robot_def = 'direct';
|
|
opt.KM_method = 'SCREW';
|
|
opt.Vel_method = 'Direct';
|
|
opt.LD_method = 'Direct';
|
|
opt.debug = true;
|
|
opt.robotName = 'R1000';
|
|
opt.reGenerate = false;
|
|
opt.Isreal = false;
|
|
|
|
robot = get_robot_R1000(file,opt);
|
|
robot = get_Kinematics(robot, opt);
|
|
|
|
% R1000_Dynamics_num;
|
|
% R1000_Dynamics;
|
|
% getGravityForce;
|
|
robot = get_velocity(robot, opt);
|
|
robot = get_regressor(robot,opt);
|
|
% symbol matched
|
|
% verify_regressor_R1000;
|
|
% robot = get_baseParams(robot, opt);
|