Azzera filtri
Azzera filtri

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

5 visualizzazioni (ultimi 30 giorni)
Why does the workspace of MATLAB not display any variables while running code, but it does display variables during debugging

Risposte (2)

Walter Roberson
Walter Roberson il 20 Giu 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 il 21 Giu 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.

Categorie

Scopri di più su Workspace Variables and MAT-Files in Help Center e File Exchange

Tag

Prodotti


Release

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by