Mercurial > hg > octave-nkf
comparison doc/liboctave/ode.texi @ 2333:b1a56412c385
[project @ 1996-07-19 02:20:16 by jwe]
Initial revision
author | jwe |
---|---|
date | Fri, 19 Jul 1996 02:26:23 +0000 |
parents | |
children | fd42779a8428 |
comparison
equal
deleted
inserted
replaced
2332:98d0771f7484 | 2333:b1a56412c385 |
---|---|
1 @node Ordinary Differential Equations, Differential Algebraic Equations, Nonlinear Equations, Top | |
2 @chapter Ordinary Differential Equations | |
3 @cindex ODE | |
4 | |
5 @deftypefn {} {}ODE_options (void) | |
6 @deftypefnx {} {}ODE_options (const ODE_options &@var{opt}) | |
7 @end deftypefn | |
8 | |
9 @deftypefn {} ODE_options& {operator =} (const ODE_options &@var{opt}) | |
10 @end deftypefn | |
11 | |
12 @deftypefn {} void init (void) | |
13 @end deftypefn | |
14 | |
15 @deftypefn {} void copy (const ODE_options &@var{opt}) | |
16 @end deftypefn | |
17 | |
18 @deftypefn {} void set_default_options (void) | |
19 @end deftypefn | |
20 | |
21 @deftypefn {} void set_absolute_tolerance (double @var{val}) | |
22 @end deftypefn | |
23 | |
24 @deftypefn {} void set_initial_step_size (double @var{val}) | |
25 @end deftypefn | |
26 | |
27 @deftypefn {} void set_maximum_step_size (double @var{val}) | |
28 @end deftypefn | |
29 | |
30 @deftypefn {} void set_minimum_step_size (double @var{val}) | |
31 @end deftypefn | |
32 | |
33 @deftypefn {} void set_relative_tolerance (double @var{val}) | |
34 @end deftypefn | |
35 | |
36 @deftypefn {} double absolute_tolerance (void) | |
37 @deftypefnx {} double initial_step_size (void) | |
38 @deftypefnx {} double maximum_step_size (void) | |
39 @deftypefnx {} double minimum_step_size (void) | |
40 @deftypefnx {} double relative_tolerance (void) | |
41 @end deftypefn | |
42 | |
43 @deftypefn {} {}ODE (void) | |
44 @deftypefnx {} {}ODE (int @var{n}) | |
45 @deftypefnx {} {}ODE (const ColumnVector &@var{state}, double @var{time}, const ODEFunc &@var{f}) | |
46 @end deftypefn | |
47 | |
48 @deftypefn {} {virtual int} size (void) const | |
49 @end deftypefn | |
50 | |
51 @deftypefn {} {virtual ColumnVector} state (void) const | |
52 @end deftypefn | |
53 | |
54 @deftypefn {} {virtual double} time (void) const | |
55 @end deftypefn | |
56 | |
57 @deftypefn {} {virtual void} force_restart (void) | |
58 @end deftypefn | |
59 | |
60 @deftypefn {} {virtual void} initialize (const ColumnVector &@var{x}, double @var{t}) | |
61 @end deftypefn | |
62 | |
63 @deftypefn {} {virtual void} set_stop_time (double @var{t}) | |
64 @end deftypefn | |
65 | |
66 @deftypefn {} {virtual void} clear_stop_time (void) | |
67 @end deftypefn | |
68 | |
69 @deftypefn {} {virtual ColumnVector} integrate (double @var{t}) | |
70 @end deftypefn | |
71 | |
72 @deftypefn {} void integrate (int @var{nsteps}, double @var{tstep}, ostream &@var{s}) | |
73 @end deftypefn | |
74 | |
75 @deftypefn {} Matrix integrate (const ColumnVector &@var{tout}) | |
76 @deftypefnx {} Matrix integrate (const ColumnVector &@var{tout}, const ColumnVector &@var{tcrit}) | |
77 @end deftypefn |