DADiSP Worksheet Functions > Function Categories > Variables > GETVARIABLE
Returns the value of a global variable.
GETVARIABLE("name", element)
"name" |
- |
A string. The name of the global variable. |
element |
- |
Optional. An integer, the array index if the variable is a series or array. |
A = 25
B = {25, 41, 33}
getvariable("A")
returns 25.
getvariable("B")
returns the series {25, 41, 33}.
getvariable("B", 2)
returns the value 41 to the status line.
B[2] also returns 41.
Except for hot variables, all variables in an SPL routine are considered local unless declared with the extern or global keyword. GETVARIABLE and SETVARIABLE allow SPL routines to explicitly manipulate global variables.
GETVARIABLE also returns the value of a hot variable. See SETHOTVARIABLE to create a hot variable.