diff scripts/ode/ode15s.m @ 25113:476fc012d09a stable

doc: Shorten very long first sentences of docstrings (bug #53388). * syscalls.cc (FO_APPEND, FO_ASYNC, FO_CREAT, FO_EXCL, FO_NONBLOCK, FO_RDONLY, FO_RDWR, FO_SYNC, FO_TRUNC, FO_WRONLY, FWNOHANG, FWUNTRACED, FWCONTINUE): Shorten very long first docstring sentences. chol.cc (Fcholdelete, Fcholshift): Likewise. qr.cc (Fqrupdate, Fqrinsert, Fqrdelete, Fqrshift): Likewise. ode15i.m (ode15i): Likewise. ode15s.m (ode15s): Likewise.
author John W. Eaton <jwe@octave.org>
date Wed, 04 Apr 2018 06:54:11 -0400
parents 6652d3823428
children 23483673ba43 c2bf210ac94f
line wrap: on
line diff
--- a/scripts/ode/ode15s.m	Wed Apr 04 06:05:27 2018 -0400
+++ b/scripts/ode/ode15s.m	Wed Apr 04 06:54:11 2018 -0400
@@ -22,11 +22,11 @@
 ## @deftypefnx {} {[@var{t}, @var{y}, @var{te}, @var{ye}, @var{ie}] =} ode15s (@dots{})
 ## @deftypefnx {} {@var{solution} =} ode15s (@dots{})
 ## @deftypefnx {} {} ode15s (@dots{})
+## Solve a set of stiff Ordinary Differential Equations (ODEs) or stiff
+## semi-explicit index 1 Differential Algebraic Equations (DAEs).
 ##
-## Solve a set of stiff Ordinary Differential Equations (ODEs) or stiff
-## semi-explicit Differential Algebraic Equations (DAEs) of index 1, with a
-## variable step, variable order BDF (Backward Differentiation Formula) method
-## that ranges from order 1 to 5.
+## @code{ode15s} uses a variable step, variable order BDF (Backward
+## Differentiation Formula) method that ranges from order 1 to 5.
 ##
 ## @var{fun} is a function handle, inline function, or string containing the
 ## name of the function that defines the ODE: @code{y' = f(t,y)}.  The function