How to use global variable as local variable

8 次查看(过去 30 天)
I have global variables x,y and z i want to use it as local variables how can i use them?

采纳的回答

Stephen23
Stephen23 2017-1-9
编辑:Stephen23 2017-1-9
"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 个评论
Dan Bindman
Dan Bindman 2020-12-2
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 2020-12-2
编辑:Stephen23 2020-12-2
"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.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Variables 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by