comparison doc/interpreter/diffeq.txi @ 21122:dba88797f69f

doc: Periodic grammarcheck of documentation.
author Rik <rik@octave.org>
date Wed, 20 Jan 2016 21:14:47 -0800
parents afe9c529760d
children bac0d6f07a3e
comparison
equal deleted inserted replaced
21121:f5b17eb2508b 21122:dba88797f69f
141 @item @code{ode45} Integrates a system of non--stiff ordinary differential equations 141 @item @code{ode45} Integrates a system of non--stiff ordinary differential equations
142 (non--stiff ODEs and DAEs) using second order @nospell{Dormand-Prince} 142 (non--stiff ODEs and DAEs) using second order @nospell{Dormand-Prince}
143 method. This is a fourth--order accurate integrator therefore the local 143 method. This is a fourth--order accurate integrator therefore the local
144 error normally expected is @math{O(h^5)}. This solver requires six 144 error normally expected is @math{O(h^5)}. This solver requires six
145 function evaluations per integration step. 145 function evaluations per integration step.
146
146 @item @code{ode23} Integrates a system of non--stiff ordinary differential equations 147 @item @code{ode23} Integrates a system of non--stiff ordinary differential equations
147 (non-stiff ODEs and DAEs) using second order @nospell{Bogacki-Shampine} 148 (non-stiff ODEs and DAEs) using second order @nospell{Bogacki-Shampine}
148 method. This is a second-order accurate integrator therefore the local 149 method. This is a second-order accurate integrator therefore the local
149 error normally expected is @math{O(h^3)}. This solver requires three 150 error normally expected is @math{O(h^3)}. This solver requires three
150 function evaluations per integration step. 151 function evaluations per integration step.
151 @end itemize 152 @end itemize
152 @end itemize 153 @end itemize
153 154
154 155