7017
|
1 ## Copyright (C) 1998, 2000, 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} {} qconj (@var{q}) |
|
22 ## Conjugate of a quaternion. |
|
23 ## |
|
24 ## @example |
|
25 ## q = [w, x, y, z] = w*i + x*j + y*k + z |
|
26 ## qconj (q) = -w*i -x*j -y*k + z |
|
27 ## @end example |
|
28 ## @end deftypefn |
3224
|
29 |
3452
|
30 ## Author: A. S. Hodel <a.s.hodel@eng.auburn.edu> |
|
31 ## Adapted-By: jwe |
|
32 |
|
33 function retval = qconj (q) |
|
34 |
|
35 [a, b, c, d] = quaternion (q); |
|
36 |
|
37 retval = quaternion (-a, -b, -c, d); |
|
38 |
3224
|
39 endfunction |
|
40 |