friction.m
来自「Robotics TOOLBOX The Toolbox provides m」· M 代码 · 共 27 行
M
27 行
%FRICTION Compute friction torque for a ROBOT object%% TAU = FRICTION(ROBOT, QD)%% Return the vector of joint friction torques for the specified% ROBOT object with link velocities of QD. %% SEE ALSO: LINK/FRICTION% MOD HISTORY% $Log: friction.m,v $% Revision 1.1 2002/04/14 10:18:56 pic% Remove friction from all links of robot.%% $Revision: 1.1 $% Copyright (C) 1999-2002, by Peter I. Corkefunction tau = friction(robot, qd) L = robot.link; for i=1:robot.n, tau(i) = friction(L{i}, qd(i)); end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?