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

📄 mtimes.m

📁 Robotics TOOLBOX The Toolbox provides many functions that are useful in robotics including such thi
💻 M
字号:
%MTIMES Multiply two quaternion objects%% Invoked by the * operator, handle two cases:%% q1*q2	standard quaternion multiplication% q1*v	rotate vector v by quaternion% $Log: mtimes.m,v $% Revision 1.3  2002/04/01 12:06:47  pic% General tidyup, help comments, copyright, see also, RCS keys.%% $Revision: 1.3 $%% Copyright (C) 1999-2002, by Peter I. Corkefunction qp = mtimes(q1, q2)	if isa(q2, 'quaternion')	%QQMUL	Multiply unit-quaternion by unit-quaternion	%	%	QQ = qqmul(Q1, Q2)	%	%	Return a product of unit-quaternions.	%	%	See also: TR2Q	%	Copyright (C) 1993 Peter Corke		% decompose into scalar and vector components		s1 = q1.s;	v1 = q1.v;		s2 = q2.s;	v2 = q2.v;		% form the product		qp = quaternion([s1*s2-v1*v2' s1*v2+s2*v1+cross(v1,v2)]);	elseif all(size(q2) == [3 1])	%QVMUL	Multiply vector by unit-quaternion	%	%	VT = qvmul(Q, V)	%	%	Rotate the vector V by the unit-quaternion Q.	%	%	See also: QQMUL, QINV	%	Copyright (C) 1993 Peter Corke	% MOD HISTORY	%	fixed error in q-v product, added inv(q1) on RHS		qp = q1 * quaternion([0 q2']) * inv(q1);		qp = qp.v;	end

⌨️ 快捷键说明

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