changeset 13963:663594b481e5

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().
author Rik <octave@nomad.inbox5.com>
date Wed, 30 Nov 2011 10:10:50 -0800
parents efa658122cc9
children 12fa52c6e886
files doc/interpreter/poly.txi doc/interpreter/stats.txi scripts/polynomial/compan.m scripts/polynomial/deconv.m scripts/polynomial/mpoles.m scripts/polynomial/polygcd.m scripts/polynomial/polyint.m scripts/polynomial/polyout.m scripts/polynomial/polyreduce.m scripts/polynomial/polyval.m scripts/polynomial/polyvalm.m scripts/polynomial/residue.m
diffstat 12 files changed, 11 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/doc/interpreter/poly.txi	Tue Nov 29 20:34:00 2011 -0800
+++ b/doc/interpreter/poly.txi	Wed Nov 30 10:10:50 2011 -0800
@@ -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)
--- a/doc/interpreter/stats.txi	Tue Nov 29 20:34:00 2011 -0800
+++ b/doc/interpreter/stats.txi	Wed Nov 30 10:10:50 2011 -0800
@@ -118,8 +118,6 @@
 
 @DOCSTRING(histc)
 
-@DOCSTRING(cut)
-
 @c FIXME: really want to put a reference to unique here
 @c @DOCSTRING(values)
 
--- a/scripts/polynomial/compan.m	Tue Nov 29 20:34:00 2011 -0800
+++ b/scripts/polynomial/compan.m	Wed Nov 30 10:10:50 2011 -0800
@@ -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
 
--- a/scripts/polynomial/deconv.m	Tue Nov 29 20:34:00 2011 -0800
+++ b/scripts/polynomial/deconv.m	Wed Nov 30 10:10:50 2011 -0800
@@ -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 <arichard@stark.cc.oh.us>
--- a/scripts/polynomial/mpoles.m	Tue Nov 29 20:34:00 2011 -0800
+++ b/scripts/polynomial/mpoles.m	Wed Nov 30 10:10:50 2011 -0800
@@ -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 <bpabbott@mac.com>
--- a/scripts/polynomial/polygcd.m	Tue Nov 29 20:34:00 2011 -0800
+++ b/scripts/polynomial/polygcd.m	Wed Nov 30 10:10:50 2011 -0800
@@ -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
 
--- a/scripts/polynomial/polyint.m	Tue Nov 29 20:34:00 2011 -0800
+++ b/scripts/polynomial/polyint.m	Wed Nov 30 10:10:50 2011 -0800
@@ -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
 
--- a/scripts/polynomial/polyout.m	Tue Nov 29 20:34:00 2011 -0800
+++ b/scripts/polynomial/polyout.m	Wed Nov 30 10:10:50 2011 -0800
@@ -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 <a.s.hodel@eng.auburn.edu>
--- a/scripts/polynomial/polyreduce.m	Tue Nov 29 20:34:00 2011 -0800
+++ b/scripts/polynomial/polyreduce.m	Wed Nov 30 10:10:50 2011 -0800
@@ -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 <arichard@stark.cc.oh.us>
--- a/scripts/polynomial/polyval.m	Tue Nov 29 20:34:00 2011 -0800
+++ b/scripts/polynomial/polyval.m	Wed Nov 30 10:10:50 2011 -0800
@@ -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 <arichard@stark.cc.oh.us>
--- a/scripts/polynomial/polyvalm.m	Tue Nov 29 20:34:00 2011 -0800
+++ b/scripts/polynomial/polyvalm.m	Wed Nov 30 10:10:50 2011 -0800
@@ -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 <arichard@stark.cc.oh.us>
--- a/scripts/polynomial/residue.m	Tue Nov 29 20:34:00 2011 -0800
+++ b/scripts/polynomial/residue.m	Wed Nov 30 10:10:50 2011 -0800
@@ -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 <arichard@stark.cc.oh.us>