Filter löschen
Filter löschen

Exchanging data from data acquisition listener to GUI

3 Ansichten (letzte 30 Tage)
Rajeev Yadav
Rajeev Yadav am 31 Mär. 2014
Kommentiert: Rajeev Yadav am 1 Apr. 2014
I am trying to create a buffer to store data between each listener call (when data is available)via a GUI. Could you give some idea as to how to achieve it?
I tried global variables, storing the data in handles but it doesn't work.
Thanks RY

Antworten (1)

Joseph Cheng
Joseph Cheng am 31 Mär. 2014
When you try to store the data in handles did you update the handles object with:
guidata(hObject, handles);
  1 Kommentar
Rajeev Yadav
Rajeev Yadav am 1 Apr. 2014
Thanks Joe, I understand your point. The problem is not that simple. I am already invoking the DAQ session via a button event. The DAQ allows to call a listener when a set number of samples are available for processing. I can use the listener to plot and store to file. The code snippet is as below:
lh = s.addlistener('DataAvailable', @(src, event) plotData(src, event, fidData, handles));
s.NotifyWhenDataAvailableExceeds = str2double(get(handles.tNumSample, 'string'));
s.startBackground();
My problem is to access data from one listner call to another.
Thanks RY

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Data Acquisition Toolbox Supported Hardware finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by