フィルターのクリア

analog output error using MCC USB-1408fs

3 ビュー (過去 30 日間)
Karl
Karl 2011 年 5 月 25 日
I receive the following error when starting an analog output using a MCC USB-1408fs
MCC: Count must be integer multiple of packet size for Continuous mode
Any suggestions as to what is going on?
The mfile is:
SampFreq = 20; % Hz
Duration = 5; % sec
NSamples = SampFreq*Duration+1;
t = [0:1:NSamples-1]'/SampFreq;
v = 1+sin(2*pi*t/Duration);
ao = analogoutput('mcc',0);
addchannel(ao,0);
set(ao,'SampleRate',SampFreq);
set(ao,'TriggerType','Immediate');
putdata(ao, v);
start(ao);
wait(ao,Duration+2);
stop(ao)
delete(ao)
clear ao
The error is generated by the start(ao) command.
Other information:
MCC Instacal v6.01; matlab 7.4.0 (R2007a); data acq toolbox v2.10; winXP

採用された回答

Chirag Gupta
Chirag Gupta 2011 年 5 月 25 日

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnalog Filters についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by