view main/symbolic/inst/poly2sym.m @ 5679:2b962ee1530a octave-forge

Use cell() instead of the deprecated list() The list() function has been deprecated in Octave. The patch below replaces all calls to list() in the scripts poly2sym.m, sym2poly.m, and symfsolve.m by calls to cell(). Also, add a new test using cell in function sym2poly.
author rlaboiss
date Sat, 23 May 2009 13:32:29 +0000
parents f514a306fa87
children 98b373675798
line wrap: on
line source

## Copyright (C) 2003 Willem J. Atsma
##
## This program 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.
##
## This software 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 this software; see the file COPYING.  If not,
## see <http://www.gnu.org/licenses/>.

## -*- texinfo -*-
## @deftypefn {Function File} {} @var{p} = poly2sym (@var{c}, @var{x})
## Creates a symbolic polynomial expression @var{p} with coefficients @var{c}.
## If @var{p} is not specified, the free variable is set to sym("x"). @var{c}
## may be a vector or a cell-array of symbols. @var{x} may be a symbolic
## expression or a string.
## The coefficients correspond to decreasing exponent of the free variable.
##
## Example:
## @example
## symbols
## x=sym("x"); y=sym("y");
## p = poly2sym ([2,5,-3]);         # p = 2*x^2+5*x-3
## c = poly2sym ({2*y,5,-3},x); # p = 2*y*x^2+5*x-3
## @end example
##
## @end deftypefn
## @seealso{sym2poly,polyval,roots}

## Author: Willem J. Atsma <watsma(at)users.sf.net>
## Created: April 2003

function p = poly2sym(c,x)

if exist("x")!=1
	x = sym("x");
endif

N = length(c);

if !iscell(c)
	tmp = c;
	c = cell;
	for i=1:N
		c(i) = tmp(i);
	endfor
endif

p = vpa(0);
for i=1:N
	if isnumeric(c{i})
		p = p*x+vpa(c{i});
	else
		p = p*x+c{i};
	endif
endfor