GLOBAL VARIABLE :HOW USE IT?

9 visualizzazioni (ultimi 30 giorni)
shamal
shamal il 30 Mag 2023
Risposto: Image Analyst il 30 Mag 2023
hi, i want to use it in a function..example:
function CaricaManageInstrument()
global dd
dd=5;
end
>> CaricaManageInstrument()
>> dd
Unrecognized function or variable 'dd'.

Risposte (3)

Star Strider
Star Strider il 30 Mag 2023
Please do not ever use global variables.
Use the approach described in Passing Extra Parameters instead.

Walter Roberson
Walter Roberson il 30 Mag 2023
Global variables are only reachable within the current workspace. Consider the following code:
first(); second(); third();
a = 'set by first'
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.

Image Analyst
Image Analyst il 30 Mag 2023

Categorie

Scopri di più su Scope Variables and Generate Names in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by