comparison scripts/polynomial/polyder.m @ 14104:614505385171 stable

doc: Overhaul docstrings for polynomial functions. * mkpp.m, mpoles.m, pchip.m, poly.m, polyaffine.m, polyder.m, polyfit.m, polygcd.m, polyint.m, polyout.m, polyreduce.m, polyval.m, polyvalm.m, ppder.m, ppval.m, residue.m, roots.m, spline.m, unmkpp.m: Improve docstrings.
author Rik <octave@nomad.inbox5.com>
date Fri, 23 Dec 2011 20:09:27 -0800
parents b7a6a3644f3b
children 72c96de7a403
comparison
equal deleted inserted replaced
14103:47b1c1c9b06a 14104:614505385171
24 ## coefficients are given by the vector @var{p}. If a pair of polynomials 24 ## coefficients are given by the vector @var{p}. If a pair of polynomials
25 ## is given, return the derivative of the product @math{@var{a}*@var{b}}. 25 ## is given, return the derivative of the product @math{@var{a}*@var{b}}.
26 ## If two inputs and two outputs are given, return the derivative of the 26 ## If two inputs and two outputs are given, return the derivative of the
27 ## polynomial quotient @math{@var{b}/@var{a}}. The quotient numerator is 27 ## polynomial quotient @math{@var{b}/@var{a}}. The quotient numerator is
28 ## in @var{q} and the denominator in @var{d}. 28 ## in @var{q} and the denominator in @var{d}.
29 ## @seealso{poly, polyint, polyreduce, roots, conv, deconv, residue, 29 ## @seealso{polyint, polyval, polyreduce}
30 ## filter, polygcd, polyval, polyvalm}
31 ## @end deftypefn 30 ## @end deftypefn
32 31
33 ## Author: Tony Richardson <arichard@stark.cc.oh.us> 32 ## Author: Tony Richardson <arichard@stark.cc.oh.us>
34 ## Created: June 1994 33 ## Created: June 1994
35 ## Adapted-By: jwe 34 ## Adapted-By: jwe