![]() | Formatting Integer Input Parameters |
Integers used as input parameters to method and property commands can be formatted in a variety of ways. Scalar integer parameters are formatted as ASCII text and sent to the instrument. Integer arrays can be sent to the instrument in the following formats:
An ASCII list of values separated by commas or another specified delimiter.
An IEEE 488.2 binary block.
A stream of raw binary data.
This topic presents the format specifications for sending data to the device as ASCII text. For detailed information on sending array data as IEEE binary blocks, see the topic Reading and Writing IEEE 488.2 Binary Block Data. For information on sending array data as raw binary, see the topic Reading and Writing Raw Binary Data.
Integers used as input parameters have format specifications of the following general form:
%[flags] [488.2 type] [width] [.precision] [delimiter] [d | o | x ]
Modifier | Interpretation |
---|---|
flags +, -, 0 | Controls justification and padding of the output, as follows:
|
488.2 type | The number is formatted in one of six standard IEEE 488.2 numeric formats. The supported formats are:
|
width | Specifies the minimum field width of the converted number. If the converted number is shorter than the field width, it will be padded on the left (or on the right if - is present in the flags field. If @H, @Q, and @B is specified as the 488.2 type, then the width includes the #H, #Q, and #B strings, respectively. |
precision | Minimum number of digits to send. |
delimiter | The parameter must be an array of integers. The elements of the integer array are sent to the device with the specified delimiter between each element. The following delimiters are supported. Note that the enclosing parentheses are not required for comma-separated lists:
|
type |
|
Parameter Tag | Data Sent to Device |
---|---|
{Count:%-8d} | 1234\s\s\s\s Left justify. Pad with spaces. |
{Count:%8d} | \s\s\s\s1234 Right justify. Pad with spaces. |
{Count:%08d} | 00001234 Right justify. Pad with zeroes. |
{CountArray:%,d} | 1,2,3 Comma-separated list. |
{CountArray:%(;)d} | 1;2;3 Semi-colon separated list. |
{CountArray:%04,d} | 0001,0002,0003 Field width specified applies to each element. |