Size and format of each value, specified as a character vector or string.
datatype
determines the number of bytes to write for each value
and the interpretation of those bytes as a MATLAB data type.
For any read or write operation, the data type is converted to
uint8
for the data transfer. After the transfer, the data type
reverts to the specified datatype
.
Example: write(device,1:5,"double")
writes the values
[1,2,3,4,5]
as double data.
Data Types: char
| string