Error when plotting in parfor loop
2 次查看(过去 30 天)
显示 更早的评论
I'd like to plot inside a parfor loop, but am getting an error I don't understand.
parfor i=1:10
figure;
end
Cannot set WindowStyle to 'docked' when MATLAB is
started with no display or when the -noFigureWindows
option is specified.
I have changed my default window style but got the same error
set(0,'defaultfigurewindowstyle','normal')
set(0,'defaultfigurewindowstyle','docked')
1 个评论
Mark Sherstan
2018-12-19
Are you running any other code before the loop? What version of MATLAB and parrallel toolbox are your using?
采纳的回答
David Perlmutter
2018-12-19
1 个评论
Walter Roberson
2018-12-19
It does sound like you have set(0,'defaultfigurewindowstyle','docked') in effect. Check for a startup.m that might be setting it.
更多回答(5 个)
Walter Roberson
2018-12-19
It is never possible to plot to the display inside any parallel construct. The workers are in separate processes that do not have access to the graphics subsystem.
You would need to either:
- Calculate all of the data in the parfor and then do the plotting after the parfor; or
- Use parallel.pool.DataQueue or parallel.pool.PollableDataQueue and send() data back to the client to do the plotting such as by using foreach
0 个评论
Mark Sherstan
2018-12-19
编辑:Mark Sherstan
2018-12-19
To save a figure in a parfor loop you must do the following as found here. Otherwise save the data and plot after as mentioned by Walter.
parfor i=1:5
figure(i)
plot(rand(i*10,1));
saveas(gcf,['temp' num2str(i) '.jpg']);
end
Try the code above and let us know if the error continues.
0 个评论
David Perlmutter
2018-12-19
1 个评论
Walter Roberson
2018-12-19
Note that the plots are not just "invisible": they are in a different process. You would need to save them or else find a way to bring back the figures.
David Perlmutter
2018-12-20
2 个评论
Jackson Jewett
2021-9-3
Could you clarify this? Are you able to display plots within a forloop? Could you advise what you commented out in order to see these results? Thank you!
Walter Roberson
2021-9-3
David was saving the plots inside the loop; see https://www.mathworks.com/matlabcentral/answers/436570-error-when-plotting-in-parfor-loop#answer_353192
You can save plots inside of parfor; you just cannot display them to the user from inside of the parfor.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Performance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!