Robot tool box - provides many functions that are useful in robotics including such things as kinem

源代码在线查看: check1.m

软件大小: 1229 K
上传用户: wlflove123
关键词: functions including provides robotics
下载地址: 免注册下载 普通下载 VIP

相关代码

				%CHECK script to compare M-file and MEX-file versions of RNE								% load the model and remove non-linear friction				rdh = nofriction(rdh, 'coulomb');				rmdh = nofriction(rdh, 'coulomb');								% number of trials				n = 10;								fprintf('************************ normal case *****************************\n')				args = {};				fprintf('DH:  ')				check2(rdh, n, args);				fprintf('MDH: ')				check2(rmdh, n, args);								fprintf('************************ no gravity *****************************\n')				args = {[0 0 0]};				fprintf('DH:  ')				check2(rdh, n, args);				fprintf('MDH: ')				check2(rmdh, n, args);								fprintf('************************ ext force *****************************\n')				args = {[0 0 9.81], [10 10 10 10 10 10]'};				fprintf('DH:  ')				check2(rdh, n, args);				fprintf('MDH: ')				check2(rmdh, n, args);							

相关资源