3803
|
1 ## Copyright (C) 2000 Kai Habel |
|
2 ## |
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but |
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 ## General Public License for more details. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
5307
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301, USA. |
3803
|
19 |
|
20 ## -*- texinfo -*- |
5610
|
21 ## @deftypefn {Function File} {[@var{theta}, @var{phi}, @var{r}] =} cart2sph (@var{x}, @var{y}, @var{z}) |
3803
|
22 ## Transform cartesian to spherical coordinates. |
|
23 ## @var{x}, @var{y} and @var{z} must be of same shape. |
|
24 ## @var{theta} describes the angle relative to the x - axis. |
|
25 ## @var{phi} is the angle relative to the xy - plane. |
|
26 ## @var{r} is the distance to the origin (0, 0, 0). |
5642
|
27 ## @seealso{pol2cart, cart2pol, sph2cart} |
3803
|
28 ## @end deftypefn |
|
29 |
|
30 ## Author: Kai Habel <kai.habel@gmx.de> |
|
31 ## Adapted-by: jwe |
|
32 |
|
33 function [Theta, Phi, R] = cart2sph (X, Y, Z) |
|
34 |
|
35 if (nargin != 3) |
6046
|
36 print_usage (); |
3803
|
37 endif |
|
38 |
4030
|
39 if ((! (ismatrix (X) && ismatrix (Y) && ismatrix (Z))) |
3803
|
40 || size (X) != size (Y) |
|
41 || size (X) != size (Z)) |
|
42 error ("cart2sph: arguments must be matrices of same size"); |
|
43 endif |
|
44 |
|
45 Theta = atan2 (Y, X); |
|
46 Phi = atan2 (Z, sqrt (X .^ 2 + Y .^ 2)); |
|
47 R = sqrt (X .^ 2 + Y .^ 2 + Z .^ 2); |
|
48 |
|
49 endfunction |