Info

此问题已关闭。 请重新打开它进行编辑或回答。

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

1 次查看(过去 30 天)
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 个评论
Walter Roberson
Walter Roberson 2013-11-17
Is your plotData callback being called? If you put a disp() statement in it does the string get displayed ?

回答(0 个)

此问题已关闭。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by