GLOBAL VARIABLE :HOW USE IT?
8 views (last 30 days)
Show older comments
hi, i want to use it in a function..example:
function CaricaManageInstrument()
global dd
dd=5;
end
>> CaricaManageInstrument()
>> dd
Unrecognized function or variable 'dd'.
0 Comments
Answers (3)
Walter Roberson
on 30 May 2023
Global variables are only reachable within the current workspace. Consider the following code:
first(); second(); third();
function first
global a
a = 'set by first';
end
function second
a = 'set by second';
end
function third
global a
a
end
The result is not 'set by second' because for global variables, the connection between the name and the global variable is only made in workspaces that "opt in" to the connection by explicitly declaring the variable global.
Your function CaricaManageInstrument opts in to connecting "dd" to the global variable, but once you have returned to the base workspace (the command line), the base workspace has not opted into the connection between the name and the global variable.
0 Comments
See Also
Categories
Find more on Scope Variables and Generate Names in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!