Effacer les filtres
Effacer les filtres

How to use global variable as local variable

12 vues (au cours des 30 derniers jours)
sneha bharadwaj
sneha bharadwaj le 9 Jan 2017
Modifié(e) : Stephen23 le 2 Déc 2020
I have global variables x,y and z i want to use it as local variables how can i use them?

Réponse acceptée

Stephen23
Stephen23 le 9 Jan 2017
Modifié(e) : Stephen23 le 9 Jan 2017
"How to use global variable as local variable"
The best answer is "don't". Good code does not use globals: "I have never seen MATLAB code where globals were the right thing to do.... Most of the time I have seen globals being used it was a situation where the code author did not understand scoping of variables. Rather than pass variables from one function to another, they were just being made global."
If you really want to program using buggy methods (eg using globals), then declare them at the top of your function, exactly as the global documentation shows:
global X Y
Note that using globals is a bad programming practice that will make your code very hard to debug. Passing arguments is much more robust, and is the recommended way of passing data between workspaces:
  2 commentaires
Dan Bindman
Dan Bindman le 2 Déc 2020
Oh yeah please explain to me what method you would use other than Global to deal with 20GB+
data matrices. Are you going to pass that in functions? Beause you are going to double (or more) the memory draw for every pass through! Or am I missing something?
Stephen23
Stephen23 le 2 Déc 2020
Modifié(e) : Stephen23 le 2 Déc 2020
"Oh yeah please explain to me what method you would use other than Global to deal with 20GB+ data matrices. Are you going to pass that in functions? Beause you are going to double (or more) the memory draw for every pass through! Or am I missing something?"
You might be missing an understanding of MATLAB's copy-on-write approach to data handling:
Depending on the algorithm and if the code is carefully designed then it is certainly possible to write code that passes data to functions and does not make any copies of it in memory.
If the data are very large you should consider using tall arrays:
If you want any help or further advice on either of these then please ask a question and someone will help you with your specific use-case.

Connectez-vous pour commenter.

Plus de réponses (0)

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