Mercurial > hg > octave-nkf
view examples/@polynomial/polynomial.m @ 15121:04c881e66740
Remove unneccessary '-I.' in CPPFLAGS which is already part of DEFAULT_INCLUDES.
* src/Makefile.am: Remove unneccessary '-I.' in CPPFLAGS which is already part
of DEFAULT_INCLUDES.
author | Rik <rik@octave.org> |
---|---|
date | Mon, 06 Aug 2012 21:42:56 -0700 |
parents | 050bc580cb60 |
children |
line wrap: on
line source
## -*- texinfo -*- ## @deftypefn {Function File} {} polynomial () ## @deftypefnx {Function File} {} polynomial (@var{a}) ## Create a polynomial object representing the polynomial ## ## @example ## a0 + a1 * x + a2 * x^2 + @dots{} + an * x^n ## @end example ## ## @noindent ## from a vector of coefficients [a0 a1 a2 @dots{} an]. ## @end deftypefn function p = polynomial (a) if (nargin == 0) p.poly = [0]; p = class (p, "polynomial"); elseif (nargin == 1) if (strcmp (class (a), "polynomial")) p = a; elseif (isvector (a) && isreal (a)) p.poly = a(:).'; p = class (p, "polynomial"); else error ("polynomial: expecting real vector"); endif else print_usage (); endif endfunction