nofriction.m

来自「robot toolbox很多不全面」· M 代码 · 共 26 行

M
26
字号
%NOFRICTION Return link object with zero friction %%	LINK = NOFRICTION(LINK)%	LINK = NOFRICTION(LINK, 'all')%% Return the link object with Coulomb or all friction terms set to zero.%% See also: ROBOT/NOFRICTION% MOD HISTORY% $Log: nofriction.m,v $% Revision 1.3  2002/04/01 12:04:20  pic% Change argument, 'all' for all friction, else just Coulombic.%% $Revision: 1.3 $% Copyright (C) 1999-2002, by Peter I. Corkefunction  l2 = nofriction(l, only)	l2 = link(l);	if (nargin == 2) & strcmpi(only(1:3), 'all'),		l2.B = 0;	end	l2.Tc = [0 0];

⌨️ 快捷键说明

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