Filter löschen
Filter löschen

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

5 Ansichten (letzte 30 Tage)
Why does the workspace of MATLAB not display any variables while running code, but it does display variables during debugging

Antworten (2)

Walter Roberson
Walter Roberson am 20 Jun. 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 am 21 Jun. 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.

Kategorien

Mehr zu Workspace Variables and MAT-Files finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by