changeset 10224:f6e0404421f4

point to polyint in @seealso, not polyinteg
author John W. Eaton <jwe@octave.org>
date Fri, 29 Jan 2010 12:52:32 -0500
parents f493e9be5cd6
children 477d05b0a739
files doc/ChangeLog doc/interpreter/poly.txi scripts/ChangeLog scripts/polynomial/compan.m scripts/polynomial/conv.m scripts/polynomial/deconv.m scripts/polynomial/mpoles.m scripts/polynomial/polyderiv.m scripts/polynomial/polygcd.m scripts/polynomial/polyout.m scripts/polynomial/polyreduce.m scripts/polynomial/polyval.m scripts/polynomial/polyvalm.m scripts/polynomial/residue.m
diffstat 14 files changed, 21 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ChangeLog	Fri Jan 29 12:47:44 2010 -0500
+++ b/doc/ChangeLog	Fri Jan 29 12:52:32 2010 -0500
@@ -1,5 +1,8 @@
 2010-01-29  John W. Eaton  <jwe@octave.org>
 
+	* interpreter/poly.txi (Derivatives and Integrals):
+	Don't include docstring for polyinteg.
+
 	* interpreter/obsolete.txi (Obsolete Functions):
 	Remove weibcdf, weibinv, weibpdf, and weibrnd from the table.
 
--- a/doc/interpreter/poly.txi	Fri Jan 29 12:47:44 2010 -0500
+++ b/doc/interpreter/poly.txi	Fri Jan 29 12:52:32 2010 -0500
@@ -123,8 +123,6 @@
 
 @DOCSTRING(polyder)
 
-@DOCSTRING(polyinteg)
-
 @DOCSTRING(polyint)
 
 @node Polynomial Interpolation
--- a/scripts/ChangeLog	Fri Jan 29 12:47:44 2010 -0500
+++ b/scripts/ChangeLog	Fri Jan 29 12:52:32 2010 -0500
@@ -1,5 +1,12 @@
 2010-01-29  John W. Eaton  <jwe@octave.org>
 
+	* polynomial/compan.m, polynomial/conv.m, polynomial/deconv.m,
+	polynomial/mpoles.m, polynomial/polyderiv.m,
+	polynomial/polygcd.m, polynomial/polyout.m,
+	polynomial/polyreduce.m, polynomial/polyval.m,
+	polynomial/polyvalm.m, polynomial/residue.m:
+	Point to polyint in @seealso, not polyinteg.
+
 	* deprecated/module.mk (deprecated_FCN_FILES):
 	Remove delete files from the list.
 
--- a/scripts/polynomial/compan.m	Fri Jan 29 12:47:44 2010 -0500
+++ b/scripts/polynomial/compan.m	Fri Jan 29 12:52:32 2010 -0500
@@ -51,7 +51,7 @@
 ## The eigenvalues of the companion matrix are equal to the roots of the
 ## polynomial.
 ## @seealso{poly, roots, residue, conv, deconv, polyval, polyderiv,
-## polyinteg}
+## polyint}
 ## @end deftypefn
 
 ## Author: Tony Richardson <arichard@stark.cc.oh.us>
--- a/scripts/polynomial/conv.m	Fri Jan 29 12:47:44 2010 -0500
+++ b/scripts/polynomial/conv.m	Fri Jan 29 12:52:32 2010 -0500
@@ -25,7 +25,7 @@
 ## @code{length (a) + length (b) - 1}.
 ## If @var{a} and @var{b} are polynomial coefficient vectors, @code{conv}
 ## returns the coefficients of the product polynomial.
-## @seealso{deconv, poly, roots, residue, polyval, polyderiv, polyinteg}
+## @seealso{deconv, poly, roots, residue, polyval, polyderiv, polyint}
 ## @end deftypefn
 
 ## Author: Tony Richardson <arichard@stark.cc.oh.us>
--- a/scripts/polynomial/deconv.m	Fri Jan 29 12:47:44 2010 -0500
+++ b/scripts/polynomial/deconv.m	Fri Jan 29 12:52:32 2010 -0500
@@ -27,7 +27,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, polyinteg}
+## @seealso{conv, poly, roots, residue, polyval, polyderiv, polyint}
 ## @end deftypefn
 
 ## Author: Tony Richardson <arichard@stark.cc.oh.us>
--- a/scripts/polynomial/mpoles.m	Fri Jan 29 12:47:44 2010 -0500
+++ b/scripts/polynomial/mpoles.m	Fri Jan 29 12:52:32 2010 -0500
@@ -44,7 +44,7 @@
 ## @end group
 ## @end example
 ##
-## @seealso{poly, roots, conv, deconv, polyval, polyderiv, polyinteg, residue}
+## @seealso{poly, roots, conv, deconv, polyval, polyderiv, polyint, residue}
 ## @end deftypefn
 
 ## Author: Ben Abbott <bpabbott@mac.com>
--- a/scripts/polynomial/polyderiv.m	Fri Jan 29 12:47:44 2010 -0500
+++ b/scripts/polynomial/polyderiv.m	Fri Jan 29 12:52:32 2010 -0500
@@ -26,7 +26,7 @@
 ## is given @var{b} and @var{a}, the derivative of the product is
 ## returned in @var{q}, or the quotient numerator in @var{q} and the
 ## quotient denominator in @var{r}.
-## @seealso{poly, polyinteg, polyreduce, roots, conv, deconv, residue,
+## @seealso{poly, polyint, polyreduce, roots, conv, deconv, residue,
 ## filter, polygcd, polyval, polyvalm}
 ## @end deftypefn
 
--- a/scripts/polynomial/polygcd.m	Fri Jan 29 12:47:44 2010 -0500
+++ b/scripts/polynomial/polygcd.m	Fri Jan 29 12:52:32 2010 -0500
@@ -39,7 +39,7 @@
 ## @result{} [ 0, 0, 0 ]
 ## @end group
 ## @end example
-## @seealso{poly, polyinteg, polyderiv, polyreduce, roots, conv, deconv,
+## @seealso{poly, polyint, polyderiv, polyreduce, roots, conv, deconv,
 ## residue, filter, polyval, polyvalm}
 ## @end deftypefn
 
--- a/scripts/polynomial/polyout.m	Fri Jan 29 12:47:44 2010 -0500
+++ b/scripts/polynomial/polyout.m	Fri Jan 29 12:52:32 2010 -0500
@@ -32,7 +32,7 @@
 ##  @var{nargout} is zero).
 ##  @var{x} defaults to the string @code{"s"}.
 ## @seealso{polyval, polyvalm, poly, roots, conv, deconv, residue,
-## filter, polyderiv, polyinteg}
+## filter, polyderiv, polyint}
 ## @end deftypefn
 
 ## Author: A. S. Hodel <a.s.hodel@eng.auburn.edu>
--- a/scripts/polynomial/polyreduce.m	Fri Jan 29 12:47:44 2010 -0500
+++ b/scripts/polynomial/polyreduce.m	Fri Jan 29 12:52:32 2010 -0500
@@ -22,7 +22,7 @@
 ## Reduces 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, polyinteg}
+## polyvalm, polyderiv, polyint}
 ## @end deftypefn
 
 ## Author: Tony Richardson <arichard@stark.cc.oh.us>
--- a/scripts/polynomial/polyval.m	Fri Jan 29 12:47:44 2010 -0500
+++ b/scripts/polynomial/polyval.m	Fri Jan 29 12:52:32 2010 -0500
@@ -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, polyinteg}
+## polyderiv, polyint}
 ## @end deftypefn
 
 ## Author: Tony Richardson <arichard@stark.cc.oh.us>
--- a/scripts/polynomial/polyvalm.m	Fri Jan 29 12:47:44 2010 -0500
+++ b/scripts/polynomial/polyvalm.m	Fri Jan 29 12:52:32 2010 -0500
@@ -28,7 +28,7 @@
 ##
 ## The argument @var{x} must be a square matrix.
 ## @seealso{polyval, poly, roots, conv, deconv, residue, filter,
-## polyderiv, polyinteg}
+## polyderiv, polyint}
 ## @end deftypefn
 
 ## Author: Tony Richardson <arichard@stark.cc.oh.us>
--- a/scripts/polynomial/residue.m	Fri Jan 29 12:47:44 2010 -0500
+++ b/scripts/polynomial/residue.m	Fri Jan 29 12:52:32 2010 -0500
@@ -136,7 +136,7 @@
 ## @end group
 ## @end example
 ## @end ifnottex
-## @seealso{poly, roots, conv, deconv, mpoles, polyval, polyderiv, polyinteg}
+## @seealso{poly, roots, conv, deconv, mpoles, polyval, polyderiv, polyint}
 ## @end deftypefn
 
 ## Author: Tony Richardson <arichard@stark.cc.oh.us>