Member of the daq class.
aoch(device, channels, data)
error = aoch(device, channels, data)
Updates the given channels of a specified device.
| Name | Description |
| device | Specifies the device name. device is a string. |
| channels | Specifies the channels whose values you want to update. channels is a vector of positive integers. |
| data | Specifies the data with which to update the corresponding channels. data is a real vector of the same size as channels. |
| Name | Description |
| error | Returns 0 if all channels update successfully. Otherwise, error returns -1. error is a scalar. |
DEVICE = 'Dev1';
CHANNEL = [0, 1];
DATA = [1, 2];
aoch(DEVICE, CHANNEL, DATA)