Effacer les filtres
Effacer les filtres

global variable not working.

3 vues (au cours des 30 derniers jours)
Sameer
Sameer le 19 Mai 2014
Commenté : Geoff Hayes le 19 Mai 2014
function [f] = objfun(n)
global f;
f = var(n);
end
How is the global variable not working
  1 commentaire
Geoff Hayes
Geoff Hayes le 19 Mai 2014
Hi Sameer,
Please clarify the statement how is the global variable not working. What do you mean exactly?
Note that you are returning a parameter named f and you have declared a global variable with the same name. Why? There is no need to declare your return parameter as global.
Geoff

Connectez-vous pour commenter.

Réponses (1)

Image Analyst
Image Analyst le 19 Mai 2014
You don't need to make f global if you're returning it to the caller. Why? Why do that? Declaring it global inside objfun means that f now takes on whatever value it had last instead of being a local variable. But then you just overwrite that value , so there was absolutely no point in making it global since you didn't even use its global value. Delete that global line of code.

Catégories

En savoir plus sur Variables dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by