# HG changeset patch # User John W. Eaton # Date 1296166984 18000 # Node ID 98aa32814e3cd497aaf33cf441eca756ca17181f # Parent 9086df10c460484f1c67cdbd55b0ffa3c33cba5f doc fix for rational approximation functions diff -r 9086df10c460 -r 98aa32814e3c 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 9086df10c460 -r 98aa32814e3c 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 9086df10c460 -r 98aa32814e3c 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 9086df10c460 -r 98aa32814e3c 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 9086df10c460 -r 98aa32814e3c 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 9086df10c460 -r 98aa32814e3c 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)