How can I make a variable span multiple functions for nested structuring?
14 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Fulvio Cordella
am 1 Jul. 2021
Kommentiert: Fulvio Cordella
am 2 Jul. 2021
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 Kommentare
Akzeptierte Antwort
Stephen23
am 1 Jul. 2021
Bearbeitet: Stephen23
am 1 Jul. 2021
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 Kommentare
Stephen23
am 2 Jul. 2021
Bearbeitet: Stephen23
am 2 Jul. 2021
"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.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!