필터 지우기
필터 지우기

Channel editing problem at the Data Aquisition Toolbox

조회 수: 3 (최근 30일)
Daniel Hoffmann
Daniel Hoffmann 2015년 9월 16일
답변: Walter Roberson 2015년 9월 18일
Hell I dont understand the failure or the problem at the channel editing. Can someone help me please?
The Failure is shown at the picture and the m.file is shown below.
ai = daq.createSession('ni');
ai.Rate = 50000; % Abtastrate
% Initialisierung der 3 analogen Eingänge
chan1 = addAnalogInputChannel(ai,'Dev6', 'ai0', 'Voltage');
chan1.DuratioInSeconds = 0.5; % Messzeit
chan1.Range = [-0.2,0.2]; % Grenzwerte AD Wandler
chan2 = addAnalogInputChannel(ai,'Dev6', 'ai1', 'Voltage');
chan2.DuratioInSeconds = 0.5; % Messzeit
chan2.Range = [-0.2,0.2]; % Grenzwerte AD Wandler
chan3 = addAnalogInputChannel(ai,'Dev6', 'ai2', 'Voltage');
chan3.DuratioInSeconds = 0.5; % Messzeit
chan3.Range = [-0.2,0.2]; % Gr
enzwerte AD Wandler

답변 (2개)

Tim Jackman
Tim Jackman 2015년 9월 18일
When you add an analog input channel using the command addAnalogInputChannel, you create an object for the channel that has specific properties. The properties are listed here:
Range is a defined property of this object type, but DuratioInSeconds is not. This is why you are getting this error.

Walter Roberson
Walter Roberson 2015년 9월 18일

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by