Mercurial > hg > octave-lyh
annotate doc/liboctave/nleqn.texi @ 15343:b565850bdce7
don't display hidden variables in workspace view
* symbol-information.h (symbol_information::Scope): Delete hidden.
New field, unknown. Change all uses.
* workspace-model.cc (workspace_model::workspace_model): Don't add
"Hidden" tree_item to the top-level item list.
(workspace_model::event_accepted): Don't delete 3rd item from
top_level_item list. Don't add hidden items to the list.
* workspace-view.h, workspace-view.cc
(workspace_view::_explicit_collapse): Delete hidden.
Change all uses.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Mon, 10 Sep 2012 15:56:17 -0400 |
parents | 72c96de7a403 |
children |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
1 @c Copyright (C) 1996-2012 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. | |
9 @c | |
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. | |
14 @c | |
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 | |
2657 | 19 @node Nonlinear Equations, Optimization, Nonlinear Functions, Top |
2333 | 20 @chapter Nonlinear Equations |
21 @cindex nonlinear equations | |
22 | |
5647 | 23 @deftypefn {} {} NLEqn_options (void) |
24 @deftypefnx {} {} NLEqn_options (const NLEqn_options &@var{opt}) | |
2333 | 25 @end deftypefn |
26 | |
27 @deftypefn {} NLEqn_options& {operator =} (const NLEqn_options &@var{opt}) | |
28 @end deftypefn | |
29 | |
30 @deftypefn {} void init (void) | |
31 @end deftypefn | |
32 | |
33 @deftypefn {} void copy (const NLEqn_options &@var{opt}) | |
34 @end deftypefn | |
35 | |
36 @deftypefn {} void set_default_options (void) | |
37 @end deftypefn | |
38 | |
39 @deftypefn {} void set_tolerance (double @var{val}) | |
40 @end deftypefn | |
41 | |
42 @deftypefn {} double tolerance (void) | |
43 @end deftypefn | |
44 | |
5647 | 45 @deftypefn {} {} NLEqn (void) |
46 @deftypefnx {} {} NLEqn (const ColumnVector&, const @var{NLFunc}) | |
47 @deftypefnx {} {} NLEqn (const NLEqn &@var{a}) | |
2333 | 48 @end deftypefn |
49 | |
50 @deftypefn {} NLEqn& {operator =} (const NLEqn &@var{a}) | |
51 @end deftypefn | |
52 | |
53 @deftypefn {} void resize (int @var{n}) | |
54 @end deftypefn | |
55 | |
56 @deftypefn {} void set_states (const ColumnVector &@var{x}) | |
57 @end deftypefn | |
58 | |
59 @deftypefn {} ColumnVector states (void) const | |
60 @end deftypefn | |
61 | |
62 @deftypefn {} int size (void) const | |
63 @end deftypefn | |
64 | |
65 @deftypefn {} ColumnVector solve (void) | |
66 @deftypefnx {} ColumnVector solve (const ColumnVector &@var{x}) | |
67 @end deftypefn | |
68 | |
69 @deftypefn {} ColumnVector solve (int &@var{info}) | |
70 @deftypefnx{} ColumnVector solve (const ColumnVector &@var{x}, int &@var{info}) | |
71 @end deftypefn |