Mercurial > hg > octave-nkf
diff scripts/general/quadl.m @ 9051:1bf0ce0930be
Grammar check TexInfo in all .m files
Cleanup documentation sources to follow a few consistent rules.
Spellcheck was NOT done. (but will be in another changeset)
author | Rik <rdrider0-list@yahoo.com> |
---|---|
date | Fri, 27 Mar 2009 22:31:03 -0700 |
parents | eb63fbe60fab |
children | 923c7cb7f13f |
line wrap: on
line diff
--- a/scripts/general/quadl.m +++ b/scripts/general/quadl.m @@ -24,13 +24,13 @@ ## ## Numerically evaluate integral using adaptive Lobatto rule. ## @code{quadl (@var{f}, @var{a}, @var{b})} approximates the integral of -## @code{@var{f}(@var{x})} to machine precision. @var{f} is either a +## @code{@var{f}(@var{x})} to machine precision. @var{f} is either a ## function handle, inline function or string containing the name of -## the function to evaluate. The function @var{f} must return a vector +## the function to evaluate. The function @var{f} must return a vector ## of output values if given a vector of input values. ## ## If defined, @var{tol} defines the relative tolerance to which to -## which to integrate @code{@var{f}(@var{x})}. While if @var{trace} is +## which to integrate @code{@var{f}(@var{x})}. While if @var{trace} is ## defined, displays the left end point of the current interval, the ## interval length, and the partial integral. ##