フィルターのクリア

pause vs drawnow in app designer

52 ビュー (過去 30 日間)
Dominik Müller
Dominik Müller 2020 年 10 月 13 日
編集済み: Bruno Luong 2020 年 10 月 13 日
Hi folks,
in my current function I used drawnow to update a figure in a while loop. But drawnow seems to slow down the programm (there are lots of topics on this). I know about the drawnow limitrate, but this command doesn't work with Matlab Compiler (figure begins to blink when compiled).
So today i tried to use the pause command instead of drawnow. This seems to speedup the code and the redrawing of the figure but all the interactivity of callbacks get's lost (needs lots of time!!!).
Is there anything else I could try to increase the performance of my code?
  1 件のコメント
Ameer Hamza
Ameer Hamza 2020 年 10 月 13 日
What about using pause() every n-th (say, n=5) iteration.

サインインしてコメントする。

回答 (2 件)

Mario Malic
Mario Malic 2020 年 10 月 13 日
I use drawnow in combination with the pause of 0.1s. I did not experiment with the values of pause.
while
%code
drawnow
pause (0.1)
end
They don't get lost, it's just that they get queued because program waits as it has been told.
  12 件のコメント
Mario Malic
Mario Malic 2020 年 10 月 13 日
Actually it's not the uiaxes, it's the issue with uifigure. What exactly with it, I wouldn't know.
fig = figure; % 0.124s
ax = axes(fig);
fig = figure; % 0.152s
ax = uiaxes(fig);
Bruno Luong
Bruno Luong 2020 年 10 月 13 日
編集済み: Bruno Luong 2020 年 10 月 13 日
Confirmed, I cross check,
matlab.graphics.axis.Axes in UIfigure (app designer): slow 0.0303
ax = axes(figure): fast 0.0071
ax = uiaxes(figure): fast 0.0079

サインインしてコメントする。


Dominik Müller
Dominik Müller 2020 年 10 月 13 日
no I only had one figure all the time. But if I plot on a seperate figure instead of an UIAxes the figure blinks if I use drawnow limitrate.
Now I get to another point: Is it possible that drawing on an UIAxes is less efficient than drawing on a common figure?

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by