![]() | Formatting Floating-Point Output Parameters |
Floating-point numbers used as output parameters in method and property responses can be formatted in a variety of ways. Scalar floating-point parameters are read from the instrument as ASCII text and converted to numeric values. Floating-point arrays can be read from 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 reading data from the device as ASCII text. For detailed information on reading array data as IEEE binary blocks, see the topic Reading and Writing IEEE 488.2 Binary Block Data.
Floating-point numbers used as output parameters have format specifications of the following general form:
%[488.2 type] [.precision] [delimiter] [f | e | E | g | G]
Modifier | Interpretation |
---|---|
488.2 type | The number is expected to be in one of six standard IEEE 488.2 numeric formats. The supported formats are:
|
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 Expected from Device |
---|---|
{Frequency:%e} | Data from device: 1.53E-12 Data copied to output parameter: 1.5E-12 |
{FrequencyArray:%,e} | Data from device: 1.23,4.0E-56,0.789 Data copied to output parameter: FrequencyArray[0]: 1.23 FrequencyArray[1]: 4.0E-56 FrequencyArray[2]: 0.789 |
{FrequencyArray:%@H(:)g} | Data from device: #HA7B:#H12:#H4FDD Data copied to output parameter: FrequencyArray[0]: 2683 FrequencyArray[1]: 18 FrequencyArray[2]: 20445 |