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

5 次查看(过去 30 天)
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.

回答(1 个)

Jan
Jan 2017-1-20
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 个评论
Walter Roberson
Walter Roberson 2017-1-20
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

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Parallel for-Loops (parfor) 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by