How to get current point at certain time points?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
lou
el 24 de Sept. de 2015
Respondida: Walter Roberson
el 24 de Sept. de 2015
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 comentarios
Respuesta aceptada
Walter Roberson
el 24 de Sept. de 2015
curfig = gcf;
cp = @(src,event) get(curfig,'currentpoint');
But once you have fetched it, what are you going to do with it?
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!