annotate doc/interpreter/var.txi @ 8566:da95767511f5

Remove descriptions of built-in variables from manual
author sh@sh-laptop
date Thu, 22 Jan 2009 11:06:56 -0500
parents 68aa5abfd136
children 674d00f5e072
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
8566
da95767511f5 Remove descriptions of built-in variables from manual
sh@sh-laptop
parents: 8519
diff changeset
69 @DOCSTRING(ans)
da95767511f5 Remove descriptions of built-in variables from manual
sh@sh-laptop
parents: 8519
diff changeset
70
6550
1b7a6061a05d [project @ 2007-04-20 07:40:26 by jwe]
jwe
parents: 6501
diff changeset
71 @DOCSTRING(isvarname)
1b7a6061a05d [project @ 2007-04-20 07:40:26 by jwe]
jwe
parents: 6501
diff changeset
72
7984
bbaa5d7d0143 Some documentation updates
David Bateman <dbateman@free.fr>
parents: 7336
diff changeset
73 @DOCSTRING(genvarname)
bbaa5d7d0143 Some documentation updates
David Bateman <dbateman@free.fr>
parents: 7336
diff changeset
74
bbaa5d7d0143 Some documentation updates
David Bateman <dbateman@free.fr>
parents: 7336
diff changeset
75 @DOCSTRING(namelengthmax)
bbaa5d7d0143 Some documentation updates
David Bateman <dbateman@free.fr>
parents: 7336
diff changeset
76
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
77 @menu
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
78 * Global Variables::
4686
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
79 * Persistent Variables::
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
80 * Status of Variables::
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
81 * Summary of Built-in Variables::
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
82 * Defaults from the Environment::
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
83 @end menu
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
84
4167
aae05d51353c [project @ 2002-11-12 02:52:50 by jwe]
jwe
parents: 4029
diff changeset
85 @node Global Variables
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
86 @section Global Variables
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
87 @cindex global variables
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
88 @cindex @code{global} statement
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
89 @cindex variables, global
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
90
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
91 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
92 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
93
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
94 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
95 statement. The following statements are all global declarations.
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
96
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
97 @example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
98 @group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
99 global a
4504
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
100 global a b
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
101 global c = 2
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
102 global d = 3 e f = 5
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
103 @end group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
104 @end example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
105
4504
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
106 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
107 statement. For example, after executing the following code
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
108
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
109 @example
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
110 @group
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
111 global gvar = 1
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
112 global gvar = 2
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
113 @end group
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
114 @end example
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
115
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
116 @noindent
6077
95f153281c97 [project @ 2006-10-24 16:24:30 by jwe]
jwe
parents: 5942
diff changeset
117 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
118 @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
119 @samp{clear all} does.
4504
f6a61399bc5c [project @ 2003-09-09 17:48:00 by jwe]
jwe
parents: 4476
diff changeset
120
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
121 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
122 order to access it. For example,
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
123
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
124 @example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
125 @group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
126 global x
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
127 function f ()
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
128 x = 1;
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
129 endfunction
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
130 f ()
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
131 @end group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
132 @end example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
133
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
134 @noindent
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
135 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
136 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
137 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
138
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
139 @example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
140 @group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
141 function f ()
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
142 global x;
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
143 x = 1;
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
144 endfunction
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
145 @end group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
146 @end example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
147
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
148 Passing a global variable in a function parameter list will
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
149 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
150 the function
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
151
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
152 @example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
153 @group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
154 function f (x)
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
155 x = 0
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
156 endfunction
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
157 @end group
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
158 @end example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
159
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
160 @noindent
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
161 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
162
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
163 @example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
164 global x = 13
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
165 @end example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
166
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
167 @noindent
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
168 the expression
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
169
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
170 @example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
171 f (x)
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
172 @end example
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
173
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
174 @noindent
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
175 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
176 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
177 the function works with a @emph{copy} of its argument.
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
178
4029
2cc57b6169cf [project @ 2002-08-09 07:36:15 by jwe]
jwe
parents: 3439
diff changeset
179 @DOCSTRING(isglobal)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
180
4686
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
181 @node Persistent Variables
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
182 @section Persistent Variables
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
183 @cindex persistent variables
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
184 @cindex @code{persistent} statement
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
185 @cindex variables, persistent
8286
6f2d95255911 fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents: 8281
diff changeset
186 @anchor{doc-persistent}
4686
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
187
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
188 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
189 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
190 same function. The difference between persistent variables and global
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
191 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
192 particular function and are not visible elsewhere.
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
193
6899
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
194 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
195 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
196
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
197 @example
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
198 @group
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
199 function count_calls ()
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
200 persistent calls = 0;
7031
120f3135952f [project @ 2007-10-15 15:30:03 by jwe]
jwe
parents: 7018
diff changeset
201 printf ("'count_calls' has been called %d times\n",
120f3135952f [project @ 2007-10-15 15:30:03 by jwe]
jwe
parents: 7018
diff changeset
202 ++calls);
6899
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
203 endfunction
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
204
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
205 for i = 1:3
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
206 count_calls ();
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
207 endfor
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
208
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
209 @print{} 'count_calls' has been called 1 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
210 @print{} 'count_calls' has been called 2 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
211 @print{} 'count_calls' has been called 3 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
212 @end group
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
213 @end example
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
214
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
215 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
216 @code{persistent} declaration statement. The following statements are
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
217 all persistent declarations.
4686
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
218
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
219 @example
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
220 @group
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
221 persistent a
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
222 persistent a b
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
223 persistent c = 2
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
224 persistent d = 3 e f = 5
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
225 @end group
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
226 @end example
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
227
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
228 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
229 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
230 recognized and is equivalent to @code{persistent}.
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
231
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
232 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
233 For example, after executing the following code
4686
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
234
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
235 @example
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
236 @group
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
237 persistent pvar = 1
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
238 persistent pvar = 2
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
239 @end group
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
240 @end example
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
241
c7ae43dfdea4 [project @ 2004-01-06 19:29:23 by jwe]
jwe
parents: 4504
diff changeset
242 @noindent
6896
5c9c49c51302 [project @ 2007-09-13 18:49:15 by jwe]
jwe
parents: 6778
diff changeset
243 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
244
6899
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
245 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
246 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
247 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
248 following example illustrates.
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
249
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
250 @example
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
251 @group
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
252 function count_calls ()
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
253 persistent calls;
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
254 if (isempty (calls))
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
255 calls = 0;
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
256 endif
7031
120f3135952f [project @ 2007-10-15 15:30:03 by jwe]
jwe
parents: 7018
diff changeset
257 printf ("'count_calls' has been called %d times\n",
120f3135952f [project @ 2007-10-15 15:30:03 by jwe]
jwe
parents: 7018
diff changeset
258 ++calls);
6899
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
259 endfunction
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
260 @end group
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
261 @end example
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
262
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
263 @noindent
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
264 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
265 implementation of @code{count_calls}.
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
266
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
267 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
268 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
269 is saved on disc, we get the following behaviour.
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
270
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
271 @example
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
272 @group
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
273 for i = 1:2
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
274 count_calls ();
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
275 endfor
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
276 @print{} 'count_calls' has been called 1 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
277 @print{} 'count_calls' has been called 2 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
278
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
279 clear
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
280 for i = 1:2
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
281 count_calls();
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
282 endfor
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
283 @print{} 'count_calls' has been called 3 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
284 @print{} 'count_calls' has been called 4 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
285
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
286 clear all
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
287 for i = 1:2
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
288 count_calls();
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
289 endfor
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
290 @print{} 'count_calls' has been called 1 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
291 @print{} 'count_calls' has been called 2 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
292
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
293 clear count_calls
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
294 for i = 1:2
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
295 count_calls();
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
296 endfor
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
297 @print{} 'count_calls' has been called 1 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
298 @print{} 'count_calls' has been called 2 times
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
299 @end group
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
300 @end example
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
301
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
302 @noindent
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
303 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
304 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
305 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
306 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
307 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
308 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
309 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
310 @xref{Function Locking}.
110c5782fe3b [project @ 2007-09-14 15:17:53 by jwe]
jwe
parents: 6896
diff changeset
311
4167
aae05d51353c [project @ 2002-11-12 02:52:50 by jwe]
jwe
parents: 4029
diff changeset
312 @node Status of Variables
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
313 @section Status of Variables
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
314
6623
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
315 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
316 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
317 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
318 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
319
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
320 @example
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
321 str = "A random string";
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
322 who -variables
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
323 @print{} *** local user variables:
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
324 @print{}
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
325 @print{} __nargin__ str
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
326 @end example
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
327
3361
4f40efa995c1 [project @ 1999-11-19 21:19:37 by jwe]
jwe
parents: 3294
diff changeset
328 @DOCSTRING(who)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
329
4913
c8368716bab3 [project @ 2004-07-23 16:00:48 by jwe]
jwe
parents: 4686
diff changeset
330 @DOCSTRING(whos)
c8368716bab3 [project @ 2004-07-23 16:00:48 by jwe]
jwe
parents: 4686
diff changeset
331
c8368716bab3 [project @ 2004-07-23 16:00:48 by jwe]
jwe
parents: 4686
diff changeset
332 @DOCSTRING(whos_line_format)
c8368716bab3 [project @ 2004-07-23 16:00:48 by jwe]
jwe
parents: 4686
diff changeset
333
6623
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
334 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
335 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
336 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
337 variable. The following example illustrates this.
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
338
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
339 @example
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
340 if (! exist ("meaning", "var"))
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
341 disp ("The program has no 'meaning'");
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
342 endif
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
343 @end example
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
344
3361
4f40efa995c1 [project @ 1999-11-19 21:19:37 by jwe]
jwe
parents: 3294
diff changeset
345 @DOCSTRING(exist)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
346
6623
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
347 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
348 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
349 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
350 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
351 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
352
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
353 @example
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
354 large_matrix = zeros (4000, 4000);
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
355 @end example
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
356
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
357 @noindent
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
358 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
359 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
360 function allows this.
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
361
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
362 @DOCSTRING(clear)
545847da3b88 [project @ 2007-05-15 02:23:08 by jwe]
jwe
parents: 6550
diff changeset
363
8347
fa78cb8d8a5c corrections for typos
Brian Gough<bjg@network-theory.co.uk>
parents: 8286
diff changeset
364 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
365 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
366 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
367
3361
4f40efa995c1 [project @ 1999-11-19 21:19:37 by jwe]
jwe
parents: 3294
diff changeset
368 @DOCSTRING(type)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
369
3361
4f40efa995c1 [project @ 1999-11-19 21:19:37 by jwe]
jwe
parents: 3294
diff changeset
370 @DOCSTRING(which)
3294
bfe1573bd2ae [project @ 1999-10-19 10:06:07 by jwe]
jwe
parents:
diff changeset
371