Let timer access another object's function
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I created a class which reads a file as soon as an object is created. In order to display the progress of reading process, I created a public function (which I prefered to be private by the way). Let's call this function writeProgress,
However, after starting the timer, I receive an warning message: "feval: Undefined function or method 'obj.writeProgress' for input arguments of type 'timer'".
The timer has been initialized like this:
t = timer('TimerFcn',@obj.writeProgress,'Period',1,'ExecutionMode','fixedDelay');
How can I pass the function "writeProgress"? Write progress needs to be a class member as it has to access private data and I'd rather prefer it to be private itself.
Risposte (1)
per isakson
il 31 Lug 2012
This works with R2012a
classdef test_timer < handle
properties
t
end
methods
function this = test_timer()
this.t = timer( 'TimerFcn',@(s,e) writeProgress(this,s,e) ...
, 'Period' , 1 ...
, 'ExecutionMode' , 'fixedDelay' );
start( this.t )
end
end
methods ( Access = private )
function writeProgress( this, varargin ) %#ok<MANU>
disp('writeProgress')
end
end
end
I cannot say why I use this syntax in my code.
0 Commenti
Vedere anche
Categorie
Scopri di più su Function Creation in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!