7017
|
1 ## Copyright (C) 1998, 2000, 2002, 2005, 2007 |
|
2 ## Auburn University. All rights reserved. |
3452
|
3 ## |
|
4 ## This file is part of Octave. |
|
5 ## |
|
6 ## Octave is free software; you can redistribute it and/or modify it |
|
7 ## under the terms of the GNU General Public License as published by |
7016
|
8 ## the Free Software Foundation; either version 3 of the License, or (at |
|
9 ## your option) any later version. |
3452
|
10 ## |
|
11 ## Octave is distributed in the hope that it will be useful, but |
|
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
14 ## General Public License for more details. |
|
15 ## |
|
16 ## You should have received a copy of the GNU General Public License |
7016
|
17 ## along with Octave; see the file COPYING. If not, see |
|
18 ## <http://www.gnu.org/licenses/>. |
3224
|
19 |
3452
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} qtrans (@var{v}, @var{q}) |
|
22 ## Transform the unit quaternion @var{v} by the unit quaternion @var{q}. |
|
23 ## Returns @code{@var{v} = @var{q}*@var{v}/@var{q}}. |
|
24 ## @end deftypefn |
|
25 |
|
26 ## Author: A. S. Hodel <a.s.hodel@eng.auburn.edu> |
|
27 ## Adapted-By: jwe |
3224
|
28 |
3452
|
29 function v = qtrans (v, q) |
|
30 |
7125
|
31 if (nargin != 2) |
|
32 print_usage (); |
|
33 endif |
|
34 |
4030
|
35 if (! isvector (v) || length (v) != 4) |
3452
|
36 error ("qtrans: v(%d,%d) must be a quaternion", rows (v), columns (v)); |
4030
|
37 elseif (! isvector (q) || length (q) != 4) |
3452
|
38 error ("qtrans: q(%d,%d) must be a quaternion", rows (q), columns (q)); |
|
39 endif |
|
40 |
|
41 v = qmult (q, qmult (v, qinv (q))); |
|
42 |
|
43 endfunction |