preload(d,scanData)
provides scan data to the DataAcquisition interface d
for device output.
If the DataAcquisition interface has output channels, you can queue
data using preload and then call start. Data
generation then starts on the output channels in the background without blocking MATLAB®.
Calling start begins background generation. The interface repeats the sine wave
automatically as the data output. Calling stop terminates the output generation.
start(d,"RepeatOutput")
% ⋮
stop(d)
Define and queue a cosine wave for output of one cycle on a single channel.
DataAcquisition interface, specified as a DataAcquisition
object, created using the daq
function.
Example: d = daq(...)
Scan data for device output, specified as an M-by-N matrix, where M is the number of
data scans and N is the number of output channels in the
DataAcquisition object. Each column of scanData
contains the data for one channel. For a single channel, the data is a column
vector.