diff scripts/general/pol2cart.m @ 3803:63c75bc3db82

[project @ 2001-02-28 08:24:40 by jwe]
author jwe
date Wed, 28 Feb 2001 08:24:43 +0000
parents
children 22bd65326ec1
line wrap: on
line diff
new file mode 100644
--- /dev/null
+++ b/scripts/general/pol2cart.m
@@ -0,0 +1,52 @@
+## Copyright (C) 2000  Kai Habel
+##
+## This file is part of Octave.
+##
+## Octave is free software; you can redistribute it and/or modify it
+## under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2, or (at your option)
+## any later version.
+##
+## Octave is distributed in the hope that it will be useful, but
+## WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+## General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with Octave; see the file COPYING.  If not, write to the Free
+## Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+## 02111-1307, USA.
+
+## -*- texinfo -*-
+## @deftypefn {Function File} {} [@var{x}, @var{y}] = pol2cart (@var{theta}, @var{r})
+## @deftypefnx {Function File} {} [@var{x}, @var{y}, @var{z}] = pol2cart (@var{theta}, @var{r}, @var{z})
+## Transform polar or cylindrical to cartesian coordinates.
+## @var{theta}, @var{r} (and @var{z}) must be of same shape.
+## @var{theta} describes the angle relative to the x - axis.
+## @var{r} is the distance to the z - axis (0, 0, z).
+## @end deftypefn
+## @seealso{cart2pol, cart2sph, sph2cart}
+
+## Author: Kai Habel <kai.habel@gmx.de>
+## Adapted-by: jwe
+
+function [X, Y, Z] = pol2cart (Theta, R, Z)
+
+  if (nargin < 2 || nargin > 3)
+    error ("pol2cart: number of arguments must be 2 or 3");
+  endif
+
+  if (nargin == 2 && nargout > 2)
+    error ("pol2cart: number of output arguments must not be greater than number of input arguments");
+  endif
+
+  if ((! (is_matrix (Theta) && is_matrix (R)))
+      || (size (Theta) != size (R))
+      || (nargin == 3 && (! (size (R) == size (Z) && is_matrix (Z)))))
+    error ("pol2cart: arguments must be matrices of same size");
+  endif
+
+  X = cos (Theta) .* R;
+  Y = sin (Theta) .* R;
+
+endfunction