How to get current point at certain time points?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi!
I would like to set a sampling rate of get(gcf, 'currentpoint') to such that I would get the current point let's say in every half second. My current script is:
cp=get(gcf,'currentpoint');
t=timer;
set(t,'executionMode','fixedrate');
set(t,'period',.5);
set(t,'timerfcn',cp);
start(t);
However, this doesn't work. I get an error that says: TimerFcn callback must be set to a string, a function handle, or a 1-by-N cell array.
How to fix my script?
댓글 수: 0
채택된 답변
Walter Roberson
2015년 9월 24일
curfig = gcf;
cp = @(src,event) get(curfig,'currentpoint');
But once you have fetched it, what are you going to do with it?
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!