annotate doc/interpreter/var.txi @ 8817:03b7f618ab3d

include docstrings for new functions in the manual
author John W. Eaton <jwe@octave.org>
date Thu, 19 Feb 2009 15:39:19 -0500
parents 38ee7ce3bc7d
children eb63fbe60fab
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7018
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
1 @c Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005,
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
2 @c 2006, 2007 John W. Eaton
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
3 @c
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
4 @c This file is part of Octave.
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
5 @c
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
6 @c Octave is free software; you can redistribute it and/or modify it
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
7 @c under the terms of the GNU General Public License as published by the
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
8 @c Free Software Foundation; either version 3 of the License, or (at
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
9 @c your option) any later version.
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
10 @c
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
11 @c Octave is distributed in the hope that it will be useful, but WITHOUT
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
12 @c ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
13 @c FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
14 @c for more details.
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
15 @c
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
16 @c You should have received a copy of the GNU General Public License
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
17 @c along with Octave; see the file COPYING. If not, see
fd42779a8428 [project @ 2007-10-13 00:52:12 by jwe]
jwe
parents: 6899
diff changeset
18 @c <http://www.gnu.org/licenses/>.
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
19
4167
aae05d51353c [project @ 2002-11-12 02:52:50 by jwe]
jwe
parents: 4029
diff changeset
20 @node Variables
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
21 @chapter Variables
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
22 @cindex variables, user-defined
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
23 @cindex user-defined variables
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
24
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
25 Variables let you give names to values and refer to them later. You have
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
26 already seen variables in many of the examples. The name of a variable
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
27 must be a sequence of letters, digits and underscores, but it may not begin
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
28 with a digit. Octave does not enforce a limit on the length of variable
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
29 names, but it is seldom useful to have variables with names longer than
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
30 about 30 characters. The following are all valid variable names
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
31
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
32 @cindex job hunting
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
33 @cindex getting a good job
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
34 @cindex flying high and fast
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
35 @example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
36 @group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
37 x
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
38 x15
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
39 __foo_bar_baz__
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
40 fucnrdthsucngtagdjb
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
41 @end group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
42 @end example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
43
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
44 @noindent
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
45 However, names like @code{__foo_bar_baz__} that begin and end with two
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
46 underscores are understood to be reserved for internal use by Octave.
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
47 You should not use them in code you write, except to access Octave's
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
48 documented internal variables and built-in symbolic constants.
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
49
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
50 Case is significant in variable names. The symbols @code{a} and
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
51 @code{A} are distinct variables.
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
52
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
53 A variable name is a valid expression by itself. It represents the
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
54 variable's current value. Variables are given new values with
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
55 @dfn{assignment operators} and @dfn{increment operators}.
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
56 @xref{Assignment Ops, ,Assignment Expressions}.
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
57
8566
da95767511f5 Remove descriptions of built-in variables from manual
sh@sh-laptop
parents: 8519
diff changeset
58 There is one built-in variable with a special meaning. The @code{ans} variable
da95767511f5 Remove descriptions of built-in variables from manual
sh@sh-laptop
parents: 8519
diff changeset
59 always contains the result of the last computation, where the output wasn't
da95767511f5 Remove descriptions of built-in variables from manual
sh@sh-laptop
parents: 8519
diff changeset
60 assigned to any variable. The code @code{a = cos (pi)} will assign the value -1
da95767511f5 Remove descriptions of built-in variables from manual
sh@sh-laptop
parents: 8519
diff changeset
61 to the variable @code{a}, but will not change the value of @code{ans}. However,
da95767511f5 Remove descriptions of built-in variables from manual
sh@sh-laptop
parents: 8519
diff changeset
62 the code @code{cos (pi)} will set the value of @code{ans} to -1.
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
63
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
64 Variables in Octave do not have fixed types, so it is possible to first
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
65 store a numeric value in a variable and then to later use the same name
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
66 to hold a string value in the same program. Variables may not be used
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
67 before they have been given a value. Doing so results in an error.
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
68
8567
674d00f5e072 remove variable index
Soren Hauberg <soren@hauberg.org>
parents: 8566
diff changeset
69 @cindex @code{ans}
8566
da95767511f5 Remove descriptions of built-in variables from manual
sh@sh-laptop
parents: 8519
diff changeset
70 @DOCSTRING(ans)
da95767511f5 Remove descriptions of built-in variables from manual
sh@sh-laptop
parents: 8519
diff changeset
71
6550
1b7a6061a05d [project @ 2007-04-20 07:40:26 by jwe]
jwe
parents: 6501
diff changeset
72 @DOCSTRING(isvarname)
1b7a6061a05d [project @ 2007-04-20 07:40:26 by jwe]
jwe
parents: 6501
diff changeset
73
7984
bbaa5d7d0143 Some documentation updates
David Bateman <dbateman@free.fr>
parents: 7336
diff changeset
74 @DOCSTRING(genvarname)
bbaa5d7d0143 Some documentation updates
David Bateman <dbateman@free.fr>
parents: 7336
diff changeset
75
bbaa5d7d0143 Some documentation updates
David Bateman <dbateman@free.fr>
parents: 7336
diff changeset
76 @DOCSTRING(namelengthmax)
bbaa5d7d0143 Some documentation updates
David Bateman <dbateman@free.fr>
parents: 7336
diff changeset
77
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
78 @menu
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
79 * Global Variables::
4686
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
80 * Persistent Variables::
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
81 * Status of Variables::
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
82 @end menu
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
83
4167
aae05d51353c [project @ 2002-11-12 02:52:50 by jwe]
jwe
parents: 4029
diff changeset
84 @node Global Variables
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
85 @section Global Variables
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
86 @cindex global variables
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
87 @cindex @code{global} statement
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
88 @cindex variables, global
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
89
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
90 A variable that has been declared @dfn{global} may be accessed from
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
91 within a function body without having to pass it as a formal parameter.
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
92
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
93 A variable may be declared global using a @code{global} declaration
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
94 statement. The following statements are all global declarations.
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
95
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
96 @example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
97 @group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
98 global a
4504
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
99 global a b
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
100 global c = 2
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
101 global d = 3 e f = 5
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
102 @end group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
103 @end example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
104
4504
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
105 A global variable may only be initialized once in a @code{global}
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
106 statement. For example, after executing the following code
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
107
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
108 @example
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
109 @group
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
110 global gvar = 1
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
111 global gvar = 2
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
112 @end group
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
113 @end example
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
114
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
115 @noindent
6077
95f153281c97 [project @ 2006-10-24 16:24:30 by jwe]
jwe
parents: 5942
diff changeset
116 the value of the global variable @code{gvar} is 1, not 2. Issuing a
6623
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
117 @samp{clear gvar} command does not change the above behavior, but
6077
95f153281c97 [project @ 2006-10-24 16:24:30 by jwe]
jwe
parents: 5942
diff changeset
118 @samp{clear all} does.
4504
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
119
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
120 It is necessary declare a variable as global within a function body in
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
121 order to access it. For example,
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
122
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
123 @example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
124 @group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
125 global x
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
126 function f ()
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
127 x = 1;
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
128 endfunction
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
129 f ()
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
130 @end group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
131 @end example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
132
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
133 @noindent
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
134 does @emph{not} set the value of the global variable @code{x} to 1. In
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
135 order to change the value of the global variable @code{x}, you must also
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
136 declare it to be global within the function body, like this
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
137
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
138 @example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
139 @group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
140 function f ()
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
141 global x;
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
142 x = 1;
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
143 endfunction
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
144 @end group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
145 @end example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
146
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
147 Passing a global variable in a function parameter list will
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
148 make a local copy and not modify the global value. For example, given
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
149 the function
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
150
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
151 @example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
152 @group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
153 function f (x)
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
154 x = 0
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
155 endfunction
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
156 @end group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
157 @end example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
158
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
159 @noindent
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
160 and the definition of @code{x} as a global variable at the top level,
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
161
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
162 @example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
163 global x = 13
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
164 @end example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
165
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
166 @noindent
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
167 the expression
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
168
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
169 @example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
170 f (x)
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
171 @end example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
172
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
173 @noindent
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
174 will display the value of @code{x} from inside the function as 0,
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
175 but the value of @code{x} at the top level remains unchanged, because
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
176 the function works with a @emph{copy} of its argument.
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
177
4029
2cc57b6169cf [project @ 2002-08-09 07:36:15 by jwe]
jwe
parents: 3439
diff changeset
178 @DOCSTRING(isglobal)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
179
4686
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
180 @node Persistent Variables
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
181 @section Persistent Variables
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
182 @cindex persistent variables
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
183 @cindex @code{persistent} statement
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
184 @cindex variables, persistent
8286
6f2d95255911 fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents: 8281
diff changeset
185 @anchor{doc-persistent}
4686
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
186
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
187 A variable that has been declared @dfn{persistent} within a function
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
188 will retain its contents in memory between subsequent calls to the
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
189 same function. The difference between persistent variables and global
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
190 variables is that persistent variables are local in scope to a
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
191 particular function and are not visible elsewhere.
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
192
6899
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
193 The following example uses a persistent variable to create a function
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
194 that prints the number of times it has been called.
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
195
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
196 @example
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
197 @group
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
198 function count_calls ()
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
199 persistent calls = 0;
7031
120f3135952f [project @ 2007-10-15 15:30:03 by jwe]
jwe
parents: 7018
diff changeset
200 printf ("'count_calls' has been called %d times\n",
120f3135952f [project @ 2007-10-15 15:30:03 by jwe]
jwe
parents: 7018
diff changeset
201 ++calls);
6899
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
202 endfunction
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
203
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
204 for i = 1:3
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
205 count_calls ();
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
206 endfor
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
207
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
208 @print{} 'count_calls' has been called 1 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
209 @print{} 'count_calls' has been called 2 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
210 @print{} 'count_calls' has been called 3 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
211 @end group
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
212 @end example
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
213
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
214 As the example shows, a variable may be declared persistent using a
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
215 @code{persistent} declaration statement. The following statements are
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
216 all persistent declarations.
4686
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
217
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
218 @example
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
219 @group
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
220 persistent a
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
221 persistent a b
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
222 persistent c = 2
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
223 persistent d = 3 e f = 5
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
224 @end group
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
225 @end example
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
226
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
227 The behavior of persistent variables is equivalent to the behavior of
8481
00df69d7e698 [docs] capitalize Octave consistently
Brian Gough <bjg@gnu.org>
parents: 8347
diff changeset
228 static variables in C. The command @code{static} in Octave is also
6899
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
229 recognized and is equivalent to @code{persistent}.
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
230
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
231 Like global variables, a persistent variable may only be initialized once.
6896
5c9c49c51302 [project @ 2007-09-13 18:49:15 by jwe]
jwe
parents: 6778
diff changeset
232 For example, after executing the following code
4686
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
233
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
234 @example
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
235 @group
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
236 persistent pvar = 1
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
237 persistent pvar = 2
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
238 @end group
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
239 @end example
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
240
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
241 @noindent
6896
5c9c49c51302 [project @ 2007-09-13 18:49:15 by jwe]
jwe
parents: 6778
diff changeset
242 the value of the persistent variable @code{pvar} is 1, not 2.
4686
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
243
6899
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
244 If a persistent variable is declared but not initialized to a specific
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
245 value, it will contain an empty matrix. So, it is also possible to
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
246 initialize a persistent variable by checking whether it is empty, as the
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
247 following example illustrates.
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
248
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
249 @example
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
250 @group
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
251 function count_calls ()
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
252 persistent calls;
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
253 if (isempty (calls))
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
254 calls = 0;
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
255 endif
7031
120f3135952f [project @ 2007-10-15 15:30:03 by jwe]
jwe
parents: 7018
diff changeset
256 printf ("'count_calls' has been called %d times\n",
120f3135952f [project @ 2007-10-15 15:30:03 by jwe]
jwe
parents: 7018
diff changeset
257 ++calls);
6899
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
258 endfunction
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
259 @end group
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
260 @end example
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
261
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
262 @noindent
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
263 This implementation behaves in exactly the same way as the previous
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
264 implementation of @code{count_calls}.
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
265
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
266 The value of a persistent variable is kept in memory until it is
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
267 explicitly cleared. Assuming that the implementation of @code{count_calls}
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
268 is saved on disc, we get the following behaviour.
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
269
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
270 @example
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
271 @group
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
272 for i = 1:2
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
273 count_calls ();
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
274 endfor
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
275 @print{} 'count_calls' has been called 1 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
276 @print{} 'count_calls' has been called 2 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
277
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
278 clear
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
279 for i = 1:2
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
280 count_calls();
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
281 endfor
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
282 @print{} 'count_calls' has been called 3 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
283 @print{} 'count_calls' has been called 4 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
284
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
285 clear all
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
286 for i = 1:2
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
287 count_calls();
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
288 endfor
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
289 @print{} 'count_calls' has been called 1 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
290 @print{} 'count_calls' has been called 2 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
291
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
292 clear count_calls
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
293 for i = 1:2
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
294 count_calls();
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
295 endfor
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
296 @print{} 'count_calls' has been called 1 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
297 @print{} 'count_calls' has been called 2 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
298 @end group
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
299 @end example
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
300
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
301 @noindent
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
302 That is, the persistent variable is only removed from memory when the
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
303 function containing the variable is removed. Note that if the function
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
304 definition is typed directly into the Octave prompt, the persistent
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
305 variable will be cleared by a simple @code{clear} command as the entire
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
306 function definition will be removed from memory. If you do not want
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
307 a persistent variable to be removed from memory even if the function is
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
308 cleared, you should use the @code{mlock} function as described in
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
309 @xref{Function Locking}.
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
310
4167
aae05d51353c [project @ 2002-11-12 02:52:50 by jwe]
jwe
parents: 4029
diff changeset
311 @node Status of Variables
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
312 @section Status of Variables
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
313
6623
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
314 When creating simple one-shot programs it can be very convenient to
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
315 see which variables are available at the prompt. The function @code{who}
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
316 and its siblings @code{whos} and @code{whos_line_format} will show
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
317 different information about what is in memory, as the following shows.
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
318
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
319 @example
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
320 str = "A random string";
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
321 who -variables
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
322 @print{} *** local user variables:
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
323 @print{}
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
324 @print{} __nargin__ str
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
325 @end example
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
326
3361
4f40efa995c1 [project @ 1999-11-19 21:19:37 by jwe]
jwe
parents: 3294
diff changeset
327 @DOCSTRING(who)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
328
4913
c8368716bab3 [project @ 2004-07-23 16:00:48 by jwe]
jwe
parents: 4686
diff changeset
329 @DOCSTRING(whos)
c8368716bab3 [project @ 2004-07-23 16:00:48 by jwe]
jwe
parents: 4686
diff changeset
330
c8368716bab3 [project @ 2004-07-23 16:00:48 by jwe]
jwe
parents: 4686
diff changeset
331 @DOCSTRING(whos_line_format)
c8368716bab3 [project @ 2004-07-23 16:00:48 by jwe]
jwe
parents: 4686
diff changeset
332
6623
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
333 Instead of displaying which variables are in memory, it is possible
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
334 to determine if a given variable is available. That way it is possible
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
335 to alter the behaviour of a program depending on the existence of a
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
336 variable. The following example illustrates this.
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
337
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
338 @example
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
339 if (! exist ("meaning", "var"))
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
340 disp ("The program has no 'meaning'");
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
341 endif
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
342 @end example
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
343
3361
4f40efa995c1 [project @ 1999-11-19 21:19:37 by jwe]
jwe
parents: 3294
diff changeset
344 @DOCSTRING(exist)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
345
6623
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
346 Usually Octave will manage the memory, but sometimes it can be practical
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
347 to remove variables from memory manually. This is usually needed when
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
348 working with large variables that fill a substantial part of the memory.
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
349 On a computer that uses the IEEE floating point format, the following
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
350 program allocates a matrix that requires around 128 MB memory.
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
351
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
352 @example
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
353 large_matrix = zeros (4000, 4000);
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
354 @end example
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
355
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
356 @noindent
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
357 Since having this variable in memory might slow down other computations,
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
358 it can be necessary to remove it manually from memory. The @code{clear}
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
359 function allows this.
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
360
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
361 @DOCSTRING(clear)
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
362
8347
fa78cb8d8a5c corrections for typos
Brian Gough<bjg@network-theory.co.uk>
parents: 8286
diff changeset
363 Information about a function or variable such as its location in the
6623
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
364 file system can also be acquired from within Octave. This is usually
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
365 only useful during development of programs, and not within a program.
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
366
3361
4f40efa995c1 [project @ 1999-11-19 21:19:37 by jwe]
jwe
parents: 3294
diff changeset
367 @DOCSTRING(type)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
368
3361
4f40efa995c1 [project @ 1999-11-19 21:19:37 by jwe]
jwe
parents: 3294
diff changeset
369 @DOCSTRING(which)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
370
8817
03b7f618ab3d include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents: 8571
diff changeset
371 @DOCSTRING(what)