How to draw Output Data in realtime fo NIDAQ?

2 Ansichten (letzte 30 Tage)
Sergey Makovkin
Sergey Makovkin am 7 Sep. 2016
Bearbeitet: Sergey Makovkin am 7 Sep. 2016
I use a code:
Session = daq.createSession('ni');
addAnalogOutputChannel(Session, 'Dev2', 0:1, 'Voltage');
Session.IsContinuous = true;
Session.Rate = 10000;
data(:, 1) = [linspace(-1, 5, 5000) linspace(5, -1, 5000)]';
data(:, 2) = [linspace(-1, 10, 5000) linspace(10, -1, 5000)]';
lh2 = addlistener(Session, 'DataRequired', @(src, event) src.queueOutputData(data));
queueOutputData(Session, data);
subplot(2, 2, 1);
plot(data(:, 1))
subplot(2, 2, 2);
plot(data(:, 2))
startBackground(Session);
And I need to draw in realtime on plot point by point. How can I do it via listener?

Antworten (0)

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by