# HG changeset patch # User Brian Gough # Date 1231824413 18000 # Node ID b88596e8f341c1bb5a14007f2d1b9d2cfc6f2ef7 # Parent e76b92c7f77984e1cd3862b947a273ee6988eea6 [docs] non singleton => non-singleton diff --git a/scripts/general/cumtrapz.m b/scripts/general/cumtrapz.m --- a/scripts/general/cumtrapz.m +++ b/scripts/general/cumtrapz.m @@ -23,7 +23,7 @@ ## ## Cumulative numerical integration using trapezoidal method. ## @code{cumtrapz (@var{y})} computes the cumulative integral of the -## @var{y} along the first non singleton dimension. If the argument +## @var{y} along the first non-singleton dimension. If the argument ## @var{x} is omitted a equally spaced vector is assumed. @code{cumtrapz ## (@var{x}, @var{y})} evaluates the cumulative integral with respect ## to @var{x}. diff --git a/scripts/general/trapz.m b/scripts/general/trapz.m --- a/scripts/general/trapz.m +++ b/scripts/general/trapz.m @@ -23,7 +23,7 @@ ## ## Numerical integration using trapezoidal method. @code{trapz ## (@var{y})} computes the integral of the @var{y} along the first -## non singleton dimension. If the argument @var{x} is omitted a +## non-singleton dimension. If the argument @var{x} is omitted a ## equally spaced vector is assumed. @code{trapz (@var{x}, @var{y})} ## evaluates the integral with respect to @var{x}. ## diff --git a/scripts/statistics/base/iqr.m b/scripts/statistics/base/iqr.m --- a/scripts/statistics/base/iqr.m +++ b/scripts/statistics/base/iqr.m @@ -22,7 +22,7 @@ ## If @var{x} is a vector, return the interquartile range, i.e., the ## difference between the upper and lower quartile, of the input data. ## -## If @var{x} is a matrix, do the above for first non singleton +## If @var{x} is a matrix, do the above for first non-singleton ## dimension of @var{x}. If the option @var{dim} argument is given, ## then operate along this dimension. ## @end deftypefn