Mercurial > hg > octave-nkf
annotate doc/liboctave/range.texi @ 20813:756b052037fb
avoid stepping beyond end of thspan in ode solvers
* scripts/ode/private/integrate_adaptive.m: make sure
not to step beyound end of tspan.
author | Carlo de Falco <carlo.defalco@polimi.it> |
---|---|
date | Sun, 11 Oct 2015 20:39:11 +0200 |
parents | 4197fc428c7d |
children |
rev | line source |
---|---|
19898
4197fc428c7d
maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents:
19790
diff
changeset
|
1 @c Copyright (C) 1996-2015 John W. Eaton |
7018 | 2 @c |
3 @c This file is part of Octave. | |
4 @c | |
5 @c Octave is free software; you can redistribute it and/or modify it | |
6 @c under the terms of the GNU General Public License as published by the | |
7 @c Free Software Foundation; either version 3 of the License, or (at | |
8 @c your option) any later version. | |
19790
446c46af4b42
strip trailing whitespace from most source files
John W. Eaton <jwe@octave.org>
parents:
17744
diff
changeset
|
9 @c |
7018 | 10 @c Octave is distributed in the hope that it will be useful, but WITHOUT |
11 @c ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
12 @c FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
13 @c for more details. | |
19790
446c46af4b42
strip trailing whitespace from most source files
John W. Eaton <jwe@octave.org>
parents:
17744
diff
changeset
|
14 @c |
7018 | 15 @c You should have received a copy of the GNU General Public License |
16 @c along with Octave; see the file COPYING. If not, see | |
17 @c <http://www.gnu.org/licenses/>. | |
18 | |
2333 | 19 @node Ranges, Nonlinear Functions, Matrix Factorizations, Top |
20 @chapter Ranges | |
21 @cindex ranges | |
22 | |
5647 | 23 @deftypefn {} {} Range (void) |
24 @deftypefnx {} {} Range (const Range &@var{r}) | |
25 @deftypefnx {} {} Range (double @var{b}, double @var{l}) | |
26 @deftypefnx {} {} Range (double @var{b}, double @var{l}, double @var{i}) | |
2333 | 27 @end deftypefn |
28 | |
29 @deftypefn {} double base (void) const | |
30 @deftypefnx {} double limit (void) const | |
31 @deftypefnx {} double inc (void) const | |
32 @end deftypefn | |
33 | |
34 @deftypefn {} void set_base (double @var{b}) | |
35 @deftypefnx {} void set_limit (double @var{l}) | |
36 @deftypefnx {} void set_inc (double @var{i}) | |
37 @end deftypefn | |
38 | |
39 @deftypefn {} int nelem (void) const | |
40 @end deftypefn | |
41 | |
42 @deftypefn {} double min (void) const | |
43 @deftypefnx {} double max (void) const | |
44 @end deftypefn | |
45 | |
46 @deftypefn {} void sort (void) | |
47 @end deftypefn | |
48 | |
49 @deftypefn {} {ostream&} {operator <<} (ostream &@var{os}, const Range &@var{r}) | |
50 @deftypefnx {} {istream&} {operator >>} (istream &@var{is}, Range &@var{r}) | |
51 @end deftypefn | |
52 | |
53 @deftypefn {} void print_range (void) | |
54 @end deftypefn |