1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
|
@c Copyright (C) 1996, 1997 John W. Eaton
@c This is part of the Octave manual.
@c For copying conditions, see the file gpl.texi.
@node Variables
@chapter Variables
@cindex variables, user-defined
@cindex user-defined variables
Variables let you give names to values and refer to them later. You have
already seen variables in many of the examples. The name of a variable
must be a sequence of letters, digits and underscores, but it may not begin
with a digit. Octave does not enforce a limit on the length of variable
names, but it is seldom useful to have variables with names longer than
about 30 characters. The following are all valid variable names
@cindex job hunting
@cindex getting a good job
@cindex flying high and fast
@example
@group
x
x15
__foo_bar_baz__
fucnrdthsucngtagdjb
@end group
@end example
@noindent
However, names like @code{__foo_bar_baz__} that begin and end with two
underscores are understood to be reserved for internal use by Octave.
You should not use them in code you write, except to access Octave's
documented internal variables and built-in symbolic constants.
Case is significant in variable names. The symbols @code{a} and
@code{A} are distinct variables.
A variable name is a valid expression by itself. It represents the
variable's current value. Variables are given new values with
@dfn{assignment operators} and @dfn{increment operators}.
@xref{Assignment Ops, ,Assignment Expressions}.
A number of variables have special built-in meanings. For example,
@code{ans} holds the current working directory, and @code{pi} names the
ratio of the circumference of a circle to its diameter. @xref{Summary of
Built-in Variables}, for a list of all the predefined variables. Some
of these built-in symbols are constants and may not be changed. Others
can be used and assigned just like all other variables, but their values
are also used or changed automatically by Octave.
Variables in Octave do not have fixed types, so it is possible to first
store a numeric value in a variable and then to later use the same name
to hold a string value in the same program. Variables may not be used
before they have been given a value. Doing so results in an error.
@menu
* Global Variables::
* Persistent Variables::
* Status of Variables::
* Summary of Built-in Variables::
* Defaults from the Environment::
@end menu
@node Global Variables
@section Global Variables
@cindex global variables
@cindex @code{global} statement
@cindex variables, global
A variable that has been declared @dfn{global} may be accessed from
within a function body without having to pass it as a formal parameter.
A variable may be declared global using a @code{global} declaration
statement. The following statements are all global declarations.
@example
@group
global a
global a b
global c = 2
global d = 3 e f = 5
@end group
@end example
A global variable may only be initialized once in a @code{global}
statement. For example, after executing the following code
@example
@group
global gvar = 1
global gvar = 2
@end group
@end example
@noindent
the value of the global variable @code{gvar} is 1, not 2.
It is necessary declare a variable as global within a function body in
order to access it. For example,
@example
@group
global x
function f ()
x = 1;
endfunction
f ()
@end group
@end example
@noindent
does @emph{not} set the value of the global variable @code{x} to 1. In
order to change the value of the global variable @code{x}, you must also
declare it to be global within the function body, like this
@example
@group
function f ()
global x;
x = 1;
endfunction
@end group
@end example
Passing a global variable in a function parameter list will
make a local copy and not modify the global value. For example, given
the function
@example
@group
function f (x)
x = 0
endfunction
@end group
@end example
@noindent
and the definition of @code{x} as a global variable at the top level,
@example
global x = 13
@end example
@noindent
the expression
@example
f (x)
@end example
@noindent
will display the value of @code{x} from inside the function as 0,
but the value of @code{x} at the top level remains unchanged, because
the function works with a @emph{copy} of its argument.
@DOCSTRING(isglobal)
@node Persistent Variables
@section Persistent Variables
@cindex persistent variables
@cindex @code{persistent} statement
@cindex variables, persistent
A variable that has been declared @dfn{persistent} within a function
will retain its contents in memory between subsequent calls to the
same function. The difference between persistent variables and global
variables is that persistent variables are local in scope to a
particular function and are not visible elsewhere.
A variable may be declared persistent using a @code{persistent}
declaration statement. The following statements are all persistent
declarations.
@example
@group
persistent a
persistent a b
persistent c = 2
persistent d = 3 e f = 5
@end group
@end example
The behavior of persistent variables is equivalent to the behavior of
static variables in C. The command @code{static} in octave is also
recognized and is equivalent to @code{persistent}. Unlike global
variables, every initialization statement will re-initialize the
variable. For example, after executing the following code
@example
@group
persistent pvar = 1
persistent pvar = 2
@end group
@end example
@noindent
the value of the persistent variable @code{pvar} is 2.
@node Status of Variables
@section Status of Variables
@DOCSTRING(clear)
@DOCSTRING(who)
@DOCSTRING(whos)
@DOCSTRING(whos_line_format)
@DOCSTRING(exist)
@DOCSTRING(document)
@DOCSTRING(type)
@DOCSTRING(which)
@node Summary of Built-in Variables
@section Summary of Built-in Variables
Here is a summary of all of Octave's built-in variables along with
cross references to additional information and their default values. In
the following table @var{octave-home} stands for the root directory
where all of Octave is installed (the default is @file{@value{OCTAVEHOME}},
@var{version} stands for the Octave version number (for example,
@value{VERSION}) and @var{arch} stands for the type of system for which
Octave was compiled (for example, @code{@value{TARGETHOSTTYPE}}).
@vtable @code
@item DEFAULT_LOADPATH
@xref{Function Files}.
Default value: @code{".:@var{octave-home}/lib/@var{version}"}.
@item EDITOR
@xref{Commands For History}.
Default value: @code{"emacs"}.
@item EXEC_PATH
@xref{Controlling Subprocesses}.
Default value: @code{":$PATH"}.
@item INFO_FILE
@xref{Getting Help}.
Default value: @code{"@var{octave-home}/info/octave.info"}.
@item INFO_PROGRAM
@xref{Getting Help}.
Default value: @code{"@var{octave-home}/libexec/octave/@var{version}/exec/@var{arch}/info"}.
@item LOADPATH
@xref{Function Files}.
Default value: @code{":"}, which tells Octave to use the directories
specified by the built-in variable @code{DEFAULT_LOADPATH}.
@item OCTAVE_HOME
Default value: @code{"@value{OCTAVEHOME}"}.
@item PAGER
@xref{Input and Output}.
Default value: @code{"less", or "more"}.
@item PS1
@xref{Customizing the Prompt}.
Default value: @code{"\s:\#> "}.
@item PS2
@xref{Customizing the Prompt}.
Default value: @code{"> "}.
@item PS4
@xref{Customizing the Prompt}.
Default value: @code{"+ "}.
@item automatic_replot
@xref{Two-Dimensional Plotting}.
Default value: 0.
@item beep_on_error
@xref{Error Handling}.
Default value: 0.
@item completion_append_char
@xref{Commands For Completion}.
Default value: @code{" "}.
@item default_save_format
@xref{Simple File I/O}.
Default value: @code{"ascii"}.
@item crash_dumps_octave_core
@xref{Simple File I/O}.
Default value: 1.
@item fixed_point_format
@xref{Matrices}.
Default value: 0.
@item gnuplot_binary
@xref{Three-Dimensional Plotting}.
Default value: @code{"gnuplot"}.
@item history_file
@xref{Commands For History}.
Default value: @code{"~/.octave_hist"}.
@item history_size
@xref{Commands For History}.
Default value: 1024.
@item ignore_function_time_stamp
@xref{Function Files}.
Default value: @code{"system"}.
@item max_recursion_depth
@xref{Recursion}.
Default value: 256.
@item output_max_field_width
@xref{Matrices}.
Default value: 10.
@item output_precision
@xref{Matrices}.
Default value: 5.
@item page_screen_output
@xref{Input and Output}.
Default value: 1.
@item print_answer_id_name
@xref{Terminal Output}.
Default value: 1.
@item print_empty_dimensions
@xref{Empty Matrices}.
Default value: 1.
@item return_last_computed_value
@xref{Returning From a Function}.
Default value: 0.
@item save_precision
@xref{Simple File I/O}.
Default value: 17.
@item saving_history
@xref{Commands For History}.
Default value: 1.
@item sighup_dumps_octave_core
@xref{Simple File I/O}.
Default value: 1.
@item sigterm_dumps_octave_core
@xref{Simple File I/O}.
Default value: 1.
@item silent_functions
@xref{Defining Functions}.
Default value: 0.
@item split_long_rows
@xref{Matrices}.
Default value: 1.
@item struct_levels_to_print
@xref{Data Structures}.
Default value: 2.
@item suppress_verbose_help_message
@xref{Getting Help}.
Default value: 1.
@item warn_assign_as_truth_value
@xref{The if Statement}.
Default value: 1.
@item warn_comma_in_global_decl
@xref{Global Variables}.
Default value: 1.
@item warn_divide_by_zero
@xref{Arithmetic Ops}.
Default value: 1.
@item warn_empty_list_elements
@xref{Empty Matrices}.
Default value: 0.
@item warn_fortran_indexing
@xref{Index Expressions}.
Default value: 0.
@item warn_function_name_clash
@xref{Function Files}.
Default value: 1.
@item warn_imag_to_real
@xref{Special Utility Matrices}.
Default value: 0.
@item warn_missing_semicolon
@xref{Defining Functions}.
Default value: 0.
@item warn_neg_dim_as_zero
@xref{Special Utility Matrices}.
Default value: 0.
@item warn_num_to_str
@xref{String Conversions}.
Default value: 1.
@item warn_reload_forces_clear
@xref{Dynamically Linked Functions}.
Default value: 1.
@item warn_resize_on_range_error
@xref{Index Expressions}.
Default value: 0.
@item warn_separator_insert
@xref{Matrices}.
Default value: 0.
@item warn_single_quote_string
@xref{String Conversions}.
Default value: 0.
@item warn_str_to_num
@xref{String Conversions}.
Default value: 0.
@item warn_undefined_return_values
@xref{Multiple Return Values}.
Default value: 0.
@item warn_variable_switch_label
@xref{The switch Statement}.
Default value: 0.
@end vtable
@node Defaults from the Environment
@section Defaults from the Environment
Octave uses the values of the following environment variables to set the
default values for the corresponding built-in variables. In addition,
the values from the environment may be overridden by command-line
arguments. @xref{Command Line Options}.
@vtable @code
@item EDITOR
@xref{Commands For History}.
Built-in variable: @code{EDITOR}.
@item OCTAVE_EXEC_PATH
@xref{Controlling Subprocesses}.
Built-in variable: @code{EXEC_PATH}.
Command-line argument: @code{--exec-path}.
@item OCTAVE_PATH
@xref{Function Files}.
Built-in variable: @code{LOADPATH}.
Command-line argument: @code{--path}.
@item OCTAVE_INFO_FILE
@xref{Getting Help}.
Built-in variable: @code{INFO_FILE}.
Command-line argument: @code{--info-file}.
@item OCTAVE_INFO_PROGRAM
@xref{Getting Help}.
Built-in variable: @code{INFO_PROGRAM}.
Command-line argument: @code{--info-program}.
@item OCTAVE_HISTSIZE
@xref{Commands For History}.
Built-in variable: @code{history_size}.
@item OCTAVE_HISTFILE
@xref{Commands For History}.
Built-in variable: @code{history_file}.
@end vtable
|