# HG changeset patch # User Rik # Date 1322676650 28800 # Node ID 663594b481e5b3170a77ffafc569cf52bd10026d # Parent efa658122cc92b7124d19a0d1d8cac101b176291 doc: Remove documentation references to deprecated functions cut() and polyderiv() * poly.txi: Remove DOCSTRING for polyderiv(). * stats.txi: Remove DOCSTRING for cut(). * compan.m, deconv.m, mpoles.m, polygcd.m, polyint.m, polyout.m, polyreduce.m, polyval.m, polyvalm.m, residue.m: Remove @seealso reference to polyderiv(). diff --git a/doc/interpreter/poly.txi b/doc/interpreter/poly.txi --- a/doc/interpreter/poly.txi +++ b/doc/interpreter/poly.txi @@ -107,7 +107,7 @@ @section Derivatives / Integrals / Transforms Octave comes with functions for computing the derivative and the integral -of a polynomial. The functions @code{polyderiv} and @code{polyint} +of a polynomial. The functions @code{polyder} and @code{polyint} both return new polynomials describing the result. As an example we'll compute the definite integral of @math{p(x) = x^2 + 1} from 0 to 3. @@ -120,8 +120,6 @@ @end group @end example -@DOCSTRING(polyderiv) - @DOCSTRING(polyder) @DOCSTRING(polyint) diff --git a/doc/interpreter/stats.txi b/doc/interpreter/stats.txi --- a/doc/interpreter/stats.txi +++ b/doc/interpreter/stats.txi @@ -118,8 +118,6 @@ @DOCSTRING(histc) -@DOCSTRING(cut) - @c FIXME: really want to put a reference to unique here @c @DOCSTRING(values) diff --git a/scripts/polynomial/compan.m b/scripts/polynomial/compan.m --- a/scripts/polynomial/compan.m +++ b/scripts/polynomial/compan.m @@ -51,7 +51,7 @@ ## @end ifnottex ## The eigenvalues of the companion matrix are equal to the roots of the ## polynomial. -## @seealso{poly, roots, residue, conv, deconv, polyval, polyderiv, +## @seealso{poly, roots, residue, conv, deconv, polyval, polyder, ## polyint} ## @end deftypefn diff --git a/scripts/polynomial/deconv.m b/scripts/polynomial/deconv.m --- a/scripts/polynomial/deconv.m +++ b/scripts/polynomial/deconv.m @@ -26,7 +26,7 @@ ## If @var{y} and @var{a} are polynomial coefficient vectors, @var{b} will ## contain the coefficients of the polynomial quotient and @var{r} will be ## a remainder polynomial of lowest order. -## @seealso{conv, poly, roots, residue, polyval, polyderiv, polyint} +## @seealso{conv, poly, roots, residue, polyval, polyder, polyint} ## @end deftypefn ## Author: Tony Richardson diff --git a/scripts/polynomial/mpoles.m b/scripts/polynomial/mpoles.m --- a/scripts/polynomial/mpoles.m +++ b/scripts/polynomial/mpoles.m @@ -44,7 +44,7 @@ ## @end group ## @end example ## -## @seealso{poly, roots, conv, deconv, polyval, polyderiv, polyint, residue} +## @seealso{poly, roots, conv, deconv, polyval, polyder, polyint, residue} ## @end deftypefn ## Author: Ben Abbott diff --git a/scripts/polynomial/polygcd.m b/scripts/polynomial/polygcd.m --- a/scripts/polynomial/polygcd.m +++ b/scripts/polynomial/polygcd.m @@ -39,7 +39,7 @@ ## @result{} [ 0, 0, 0 ] ## @end group ## @end example -## @seealso{poly, polyint, polyderiv, polyreduce, roots, conv, deconv, +## @seealso{poly, polyint, polyder, polyreduce, roots, conv, deconv, ## residue, filter, polyval, polyvalm} ## @end deftypefn diff --git a/scripts/polynomial/polyint.m b/scripts/polynomial/polyint.m --- a/scripts/polynomial/polyint.m +++ b/scripts/polynomial/polyint.m @@ -22,7 +22,7 @@ ## Return the coefficients of the integral of the polynomial whose ## coefficients are represented by the vector @var{p}. The variable ## @var{k} is the constant of integration, which by default is set to zero. -## @seealso{poly, polyderiv, polyreduce, roots, conv, deconv, residue, +## @seealso{poly, polyder, polyreduce, roots, conv, deconv, residue, ## filter, polyval, polyvalm} ## @end deftypefn diff --git a/scripts/polynomial/polyout.m b/scripts/polynomial/polyout.m --- a/scripts/polynomial/polyout.m +++ b/scripts/polynomial/polyout.m @@ -35,7 +35,7 @@ ## @var{nargout} is zero). ## @var{x} defaults to the string @code{"s"}. ## @seealso{polyval, polyvalm, poly, roots, conv, deconv, residue, -## filter, polyderiv, polyint} +## filter, polyder, polyint} ## @end deftypefn ## Author: A. S. Hodel diff --git a/scripts/polynomial/polyreduce.m b/scripts/polynomial/polyreduce.m --- a/scripts/polynomial/polyreduce.m +++ b/scripts/polynomial/polyreduce.m @@ -21,7 +21,7 @@ ## Reduce a polynomial coefficient vector to a minimum number of terms by ## stripping off any leading zeros. ## @seealso{poly, roots, conv, deconv, residue, filter, polyval, -## polyvalm, polyderiv, polyint} +## polyvalm, polyder, polyint} ## @end deftypefn ## Author: Tony Richardson diff --git a/scripts/polynomial/polyval.m b/scripts/polynomial/polyval.m --- a/scripts/polynomial/polyval.m +++ b/scripts/polynomial/polyval.m @@ -32,7 +32,7 @@ ## prediction interval, the structured variable @var{s}, originating ## form `polyfit', must be present. ## @seealso{polyfit, polyvalm, poly, roots, conv, deconv, residue, filter, -## polyderiv, polyint} +## polyder, polyint} ## @end deftypefn ## Author: Tony Richardson diff --git a/scripts/polynomial/polyvalm.m b/scripts/polynomial/polyvalm.m --- a/scripts/polynomial/polyvalm.m +++ b/scripts/polynomial/polyvalm.m @@ -27,7 +27,7 @@ ## ## The argument @var{x} must be a square matrix. ## @seealso{polyval, poly, roots, conv, deconv, residue, filter, -## polyderiv, polyint} +## polyder, polyint} ## @end deftypefn ## Author: Tony Richardson diff --git a/scripts/polynomial/residue.m b/scripts/polynomial/residue.m --- a/scripts/polynomial/residue.m +++ b/scripts/polynomial/residue.m @@ -136,7 +136,7 @@ ## @end example ## ## @end ifnottex -## @seealso{poly, roots, conv, deconv, mpoles, polyval, polyderiv, polyint} +## @seealso{poly, roots, conv, deconv, mpoles, polyval, polyder, polyint} ## @end deftypefn ## Author: Tony Richardson