How can I make a variable span multiple functions for nested structuring?
13 次查看(过去 30 天)
显示 更早的评论
I am recording and analyzing audio signals in real time and I need an index to everytime make a segmentation. I cheked up the documentation but I didn't find anything on how to, in poor words, make the variable "appearing cyan".
0 个评论
采纳的回答
Stephen23
2021-7-1
编辑:Stephen23
2021-7-1
How to make a variable "cyan" (these are called shared variables) is explained here:
In general, the shared variable must be defined in the parent workspace and referred to (or redefined) in the nested function. For more details, read the paged linked above.
Because this forum does not use the same highlighting as the installed MATLAB application, here is a screenshot (this function is also attached) showing the cyan shared variable:
3 个评论
Stephen23
2021-7-2
编辑:Stephen23
2021-7-2
"I only need to declare and assign value to the variable in the parent fcn and use it in the secondary fcn and it will automatically change in cyan?"
Yes, it will be a shared variable highglighted in cyan (just as my answer shows).
"That's what I did but nothing changed and if I run the code a warning appears telling me that it can not find any variable (referring to the line I used it in the secondary fcn)."
Then most likely you did something wrong. However because you did not show/upload the code that you tried, I cant help you debug it. Note how I provided a working example for you. Common variable name mistakes include spelling errors, different capitalization, visually similar characters, etc. You might also have declared the variable in a specific way that is not syntactically recognised as a shared variable (e.g. as an output argument, or from inside a local function). But once again, without seeing your code, we cannot help you to debug what you have done wrong.
"Is there any command line I can use to prevently create a variable as able to span multiple fcn"
I do not understand what it means to "prevently" create a variable, so your question is not clear to me.
In any case, shared variables are created by their syntactical usage, not by a command.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!