mtimes.m
来自「Robotics TOOLBOX The Toolbox provides m」· M 代码 · 共 54 行
M
54 行
%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 + =
减小字号Ctrl + -
显示快捷键?