![]() | Formatting Floating-Point Input Parameters |
Floating-point numbers used as input parameters to method and property commands can be formatted in a variety of ways. Scalar floating-point parameters are formatted as ASCII text and sent to the instrument. Floating-point 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.
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.
Floating-point numbers used as input parameters have format specifications of the following general form:
%[flags] [488.2 type] [width] [.precision] [delimiter] [f | e | E | g | G]
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 an argument 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 | Maximum number of digits after the decimal point for %f, %e, %E. Maximum number of significant digits for %g, %G. The default precision is 6. |
delimiter | The parameter must be an array of floating-point numbers. The elements of the 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 |
---|---|
{Frequency:%f} | 300.000000 Default precision is 6. |
{Frequency:%4.2f} | 300.00 Field width is 4, but required length is greater. |
{Frequency:%8.2f} | \s\s300.00 Width requires padding. |
{Frequency:%8.2e} | 3.00e+02 Exponential notation. |
{FrequencyArray:%4.2,3f} | 1.10,1.20,1.30 Comma-separated list. |
{FrequencyArray:%4.2,3E} | 1.10E+00;1.20E+00;1.30E+00;1.40E+00 Semi-colon-separated list of exponential values. |