Mercurial > hg > octave-nkf
view examples/code/@polynomial/plot.m @ 20830:b65888ec820e draft default tip gccjit
dmalcom gcc jit import
author | Stefan Mahr <dac922@gmx.de> |
---|---|
date | Fri, 27 Feb 2015 16:59:36 +0100 |
parents | c8240a60dd01 |
children |
line wrap: on
line source
function h = plot (p, varargin) n = 128; rmax = max (abs (roots (p.poly))); x = [0 : (n - 1)] / (n - 1) * 2.2 * rmax - 1.1 * rmax; if (nargout > 0) h = plot (x, p(x), varargin{:}); else plot (x, p(x), varargin{:}); endif endfunction