How to view content of a variable in a script while a called function is running and paused?
9 次查看(过去 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
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
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 Center 和 File Exchange 中查找有关 Parallel for-Loops (parfor) 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!