Mercurial > hg > octave-nkf
view scripts/general/pol2cart.m @ 7671:4fbaba9abec1
implement compiled binary lookup
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Fri, 28 Mar 2008 15:53:09 -0400 |
parents | a1dbe9d80eee |
children | aaff46fef256 |
line wrap: on
line source
## Copyright (C) 2000, 2001, 2002, 2004, 2005, 2006, 2007 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 3 of the License, 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, see ## <http://www.gnu.org/licenses/>. ## -*- 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). ## @seealso{cart2pol, cart2sph, sph2cart} ## @end deftypefn ## 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 ((! (ismatrix (Theta) && ismatrix (R))) || ((! size_equal (Theta, R)) && (! isscalar (Theta)) && (! isscalar (R))) || (nargin == 3 && ((! ismatrix(Z)) || ( (! isscalar(Z)) && ( (!(isscalar(R) || size_equal (R, Z))) || (!(isscalar(Theta) || size_equal (Theta, Z))) ) ) ) ) ) error ("pol2cart: arguments must be matrices of same size or scalar"); endif X = cos (Theta) .* R; Y = sin (Theta) .* R; endfunction