⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 check1.m

📁 Robot tool box - provides many functions that are useful in robotics including such things as kinem
💻 M
字号:
%CHECK script to compare M-file and MEX-file versions of RNE% load the model and remove non-linear frictionrdh = nofriction(rdh, 'coulomb');rmdh = nofriction(rdh, 'coulomb');% number of trialsn = 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);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -