Effacer les filtres
Effacer les filtres

Why does the workspace of MATLAB not display any variables while running code, but it does display variables during debugging

5 vues (au cours des 30 derniers jours)
Why does the workspace of MATLAB not display any variables while running code, but it does display variables during debugging

Réponses (2)

Walter Roberson
Walter Roberson le 20 Juin 2023
The variable browser is only updated when matlab returns to the command line. Otherwise the cost of updating the browser could be very high.

Harshavardhan Putta
Harshavardhan Putta le 21 Juin 2023
Hi,
I understand that you have noticed a difference in the behavior of the workspace when running code versus debugging.
In MATLAB, variable may not appear in the workspace during code execution but can be visible during debugging due to various factors:
  • Execution flow: When code runs without debugging, MATLAB executes it sequentially, potentially resulting in quick completion or variable clearance, leading to no variable display.
  • Scoping: MATLAB has different scoping rules for variables. Variables defined within functions have local scope. Variables defined in the command window or scripts have global scope.
  • Breakpoints: Debugging with breakpoints enables pausing code execution at specific lines, facilitating variable inspection.
Please refer to the following documentation for more information.
I hope it helps!
Thanks.

Catégories

En savoir plus sur Workspace Variables and MAT-Files dans Help Center et File Exchange

Tags

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by