# HG changeset patch # User John W. Eaton # Date 1296166984 18000 # Node ID 862a8e4904453731007ceddc09c9599ad487fd95 # Parent d8de1a28274c867f8f077fe90403e4f8414437ac doc fix for rational approximation functions diff -r d8de1a28274c -r 862a8e490445 doc/ChangeLog --- a/doc/ChangeLog Thu Jan 27 16:46:50 2011 -0500 +++ b/doc/ChangeLog Thu Jan 27 17:23:04 2011 -0500 @@ -1,3 +1,11 @@ +2011-01-27 John W. Eaton + + * interpreter/arith.txi (Rational Approximations): Move here. + Update menu. + * interpreter/io.txi: From here. + Update menu. + * interpreter/octave.texi (Top): Update detailed menu. + 2011-01-26 John W. Eaton * interpreter/mk_doc_cache.m, interpreter/mkoctfile.1, diff -r d8de1a28274c -r 862a8e490445 doc/interpreter/arith.txi --- a/doc/interpreter/arith.txi Thu Jan 27 16:46:50 2011 -0500 +++ b/doc/interpreter/arith.txi Thu Jan 27 17:23:04 2011 -0500 @@ -39,6 +39,7 @@ * Sums and Products:: * Utility Functions:: * Special Functions:: +* Rational Approximations:: * Coordinate Transformations:: * Mathematical Constants:: @end menu @@ -279,6 +280,13 @@ @anchor{doc-gammaln} @DOCSTRING(lgamma) +@node Rational Approximations +@section Rational Approximations + +@DOCSTRING(rat) + +@DOCSTRING(rats) + @node Coordinate Transformations @section Coordinate Transformations diff -r d8de1a28274c -r 862a8e490445 doc/interpreter/io.txi --- a/doc/interpreter/io.txi Thu Jan 27 16:46:50 2011 -0500 +++ b/doc/interpreter/io.txi Thu Jan 27 17:23:04 2011 -0500 @@ -39,7 +39,6 @@ * Terminal Output:: * Terminal Input:: * Simple File I/O:: -* Rational Approximations:: @end menu @node Terminal Output @@ -251,13 +250,6 @@ @DOCSTRING(octave_core_file_name) -@node Rational Approximations -@subsection Rational Approximations - -@DOCSTRING(rat) - -@DOCSTRING(rats) - @node C-Style I/O Functions @section C-Style I/O Functions diff -r d8de1a28274c -r 862a8e490445 doc/interpreter/octave.texi --- a/doc/interpreter/octave.texi Thu Jan 27 16:46:50 2011 -0500 +++ b/doc/interpreter/octave.texi Thu Jan 27 17:23:04 2011 -0500 @@ -578,6 +578,7 @@ * Sums and Products:: * Utility Functions:: * Special Functions:: +* Rational Approximations:: * Coordinate Transformations:: * Mathematical Constants:: diff -r d8de1a28274c -r 862a8e490445 scripts/ChangeLog --- a/scripts/ChangeLog Thu Jan 27 16:46:50 2011 -0500 +++ b/scripts/ChangeLog Thu Jan 27 17:23:04 2011 -0500 @@ -1,3 +1,7 @@ +2011-01-27 John W. Eaton + + * general/rat.m: Move @seealso inside @deftypefn in docstring. + 2011-01-27 Kai Habel * plot/uigetfile.m, plot/uiputfile.m, plot/uigetdir.m: Check diff -r d8de1a28274c -r 862a8e490445 scripts/general/rat.m --- a/scripts/general/rat.m Thu Jan 27 16:46:50 2011 -0500 +++ b/scripts/general/rat.m Thu Jan 27 17:23:04 2011 -0500 @@ -33,8 +33,8 @@ ## ## Called with two arguments returns the numerator and denominator separately ## as two matrices. +## @seealso{rats} ## @end deftypefn -## @seealso{rats} function [n,d] = rat(x,tol)