How to view content of a variable in a script while a called function is running and paused?

4 views (last 30 days)
I want to view a variable content while a subsequent function is running and paused.
Example:
var_of_interest=ZZ(3,5);
.
.
.
parfor i=1:10
called_function(x,y,z) % var_of_interest is not an argument
end
I want to view content of "var_of_interest" at the time I paused the code while it was looping in a parfor loop with a function.

Answers (1)

Jan
Jan on 20 Jan 2017
A bold guess:
var_of_interest=ZZ(3,5);
disp(var_of_interest)
drawnow;
parfor i=1:10
called_function(x,y,z) % var_of_interest is not an argument
end
This looks a kind of trivial, so perhaps I do not understand the question.
  3 Comments
Walter Roberson
Walter Roberson on 20 Jan 2017
We have seen reports about the workspace browser not refreshing during debugging. I have not replicated that myself but there have been a few people reporting it.
In the meantime, you can go to the command line and dbup until you get to the proper workspace and thrn disp the variable

Sign in to comment.

Categories

Find more on Parallel for-Loops (parfor) in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!