Effacer les filtres
Effacer les filtres

Why is nothing being stored in the "Workspace" after I run my code?

15 vues (au cours des 30 derniers jours)
Recap
Recap le 24 Mar 2016
Commenté : Mohamad Ghaddar le 15 Fév 2021
I have a video processing code, its an ALPR program I am working on. But every time I run the code, none of the usual stuff that is stored in the Workspace of Matlab is getting stored. What could be the cause of this?
  1 commentaire
Stephen23
Stephen23 le 24 Mar 2016
Every function has its own workspace. This is a good thing, because it keep different code from affecting each other. You simply need to pass the desired variables as input and output arguments.

Connectez-vous pour commenter.

Réponse acceptée

Image Analyst
Image Analyst le 24 Mar 2016
You're running a function instead of a script. The variables in the function are local and vanish once you exit the function. If you want to see what their values are, set a breakpoint on the last line of your function, just before it exits.

Plus de réponses (1)

Stalin Samuel
Stalin Samuel le 24 Mar 2016
Possibly if you run the functions the variables will not stored in work space. Only the returned variables stored .If you not returned any values then nothing will be stored
  1 commentaire
Recap
Recap le 24 Mar 2016
Yes, thats exactly what is happening. Thank you.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by