Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

can anyone help me with real time data plot using ni 9234

1 Ansicht (letzte 30 Tage)
avinash pabbireddy
avinash pabbireddy am 2 Nov. 2013
Geschlossen: Sabin am 11 Feb. 2023
s = daq.createSession('ni');
s.addAnalogInputChannel('cDAQ2Mod1', 0, 'Voltage');
s.addAnalogInputChannel('cDAQ2Mod1', 1, 'Voltage');
s.Rate = 2000
s.DurationInSeconds = 20;
s
[data5,time] = s.startForeground;
plot(time,data5);
xlabel('Time (secs)');
ylabel('Voltage')
  7 Kommentare
Walter Roberson
Walter Roberson am 17 Nov. 2013
Is your plotData callback being called? If you put a disp() statement in it does the string get displayed ?

Antworten (0)

Diese Frage ist geschlossen.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by