# HG changeset patch # User jwe # Date 951364533 0 # Node ID c11d138d654aa644da93548ad68c532d7f77d101 # Parent b8fa63b7ea79e44a02c5dcf1f2dd134d8a63ed58 [project @ 2000-02-24 03:55:32 by jwe] diff --git a/doc/interpreter/bugs.txi b/doc/interpreter/bugs.txi --- a/doc/interpreter/bugs.txi +++ b/doc/interpreter/bugs.txi @@ -79,7 +79,7 @@ @end example when trying to plot many lines on one graph, you have probably generated -a plot command that is too larger for @code{gnuplot}'s fixed-length +a plot command that is too large for @code{gnuplot}'s fixed-length buffer for commands. Splitting up the plot command doesn't help because replot is implemented in gnuplot by simply appending the new plotting commands to the old command line and then evaluating it again. diff --git a/scripts/linear-algebra/rank.m b/scripts/linear-algebra/rank.m --- a/scripts/linear-algebra/rank.m +++ b/scripts/linear-algebra/rank.m @@ -25,11 +25,11 @@ ## argument is omitted, it is taken to be ## ## @example -## tol = max (size (@var{a})) * sigma (1) * eps; +## tol = max (size (@var{a})) * sigma(1) * eps; ## @end example ## ## @noindent -## where @code{eps} is machine precision and @code{sigma} is the largest +## where @code{eps} is machine precision and @code{sigma(1)} is the largest ## singular value of @var{a}. ## @end deftypefn diff --git a/scripts/plot/mesh.m b/scripts/plot/mesh.m --- a/scripts/plot/mesh.m +++ b/scripts/plot/mesh.m @@ -19,7 +19,7 @@ ## -*- texinfo -*- ## @deftypefn {Function File} {} mesh (@var{x}, @var{y}, @var{z}) -## Plot a mesh given matrices @code{x}, and @var{y} from @code{meshdom} and +## Plot a mesh given matrices @var{x}, and @var{y} from @code{meshdom} and ## a matrix @var{z} corresponding to the @var{x} and @var{y} coordinates of ## the mesh. If @var{x} and @var{y} are vectors, then a typical vertex ## is (@var{x}(j), @var{y}(i), @var{z}(i,j)). Thus, columns of @var{z} diff --git a/scripts/plot/meshdom.m b/scripts/plot/meshdom.m --- a/scripts/plot/meshdom.m +++ b/scripts/plot/meshdom.m @@ -22,9 +22,6 @@ ## Given vectors of @var{x} and @var{y} coordinates, return two matrices ## corresponding to the @var{x} and @var{y} coordinates of the mesh. ## -## See the file @file{sombrero.m} for an example of using @code{mesh} and -## @code{meshdom}. -## ## Note: this function is provided for compatibility with older versions ## of @sc{Matlab}. You should use @code{meshgrid} instead. ## @end deftypefn diff --git a/src/DLD-FUNCTIONS/qr.cc b/src/DLD-FUNCTIONS/qr.cc --- a/src/DLD-FUNCTIONS/qr.cc +++ b/src/DLD-FUNCTIONS/qr.cc @@ -120,7 +120,7 @@ given the matrix @code{a = [1, 2; 3, 4]},\n\ \n\ @example\n\ -[q, r, pi] = qr(a)\n\ +[q, r, p] = qr(a)\n\ @end example\n\ \n\ @noindent\n\ diff --git a/src/DLD-FUNCTIONS/schur.cc b/src/DLD-FUNCTIONS/schur.cc --- a/src/DLD-FUNCTIONS/schur.cc +++ b/src/DLD-FUNCTIONS/schur.cc @@ -135,7 +135,7 @@ @ifinfo\n\ @code{2 x 2}\n\ @end ifinfo\n\ -blocks along the diagonal. The diagonal elements of\n\ +along the diagonal. The diagonal elements of\n\ @iftex\n\ @tex\n\ $S$\n\ diff --git a/src/error.cc b/src/error.cc --- a/src/error.cc +++ b/src/error.cc @@ -354,9 +354,9 @@ @deftypefn {Built-in Function} {} warning (@var{msg})\n\ Print a warning message @var{msg} prefixed by the string @samp{warning: }. \n\ After printing the warning message, Octave will continue to execute\n\ -commands. You should use this function should when you want to notify\n\ -the user of an unusual condition, but only when it makes sense for your\n\ -program to go on.\n\ +commands. You should use this function when you want to notify the user\n\ +of an unusual condition, but only when it makes sense for your program\n\ +to go on.\n\ @end deftypefn") { return handle_message (warning, "unspecified warning", args); diff --git a/src/mappers.cc b/src/mappers.cc --- a/src/mappers.cc +++ b/src/mappers.cc @@ -331,7 +331,7 @@ DEFUN_MAPPER (finite, 0, xfinite, xfinite, 0, 0, 0, 0.0, 0.0, 0, "-*- texinfo -*-\n\ @deftypefn {Mapping Function} {} finite (@var{x})\n\ -Return 1 for elements of @var{x} that are NaN values and zero\n\ +Return 1 for elements of @var{x} that are finite values and zero\n\ otherwise. For example,\n\ \n\ @example\n\