Modify drawnow limitrate to update only 10 frames per second.

조회 수: 23 (최근 30일)
Kishore Kumar
Kishore Kumar 2021년 11월 16일
편집: Jan 2021년 11월 16일
My work is based on real time data acquisition and I am plotting the data in real time. My program currently reads 200 sets of data per second. I have used
drawnow limitrate
to speed up the process. But is there any way to reduce the frame update to 10 per second?
I also have annotation that specify values of peaks which will be also be updated with all 200 sets of data. Does drawnow work on annotaion as well or will it just work on plot?
Thank you for any help.

채택된 답변

Jan
Jan 2021년 11월 16일
편집: Jan 2021년 11월 16일
figure;
axes('NextPlot', 'add');
tic;
while 1
plot(rand, rand)
if toc > 0.1
drawnow;
tic;
end
end
drawnow triggers the update of the contents of the figure. This concerns annotations also.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Graphics Performance에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by