Technical data

Measure Commands 24
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 563
:MEASure:QUALifier<M>:CONDition
Command :MEASure:QUALifier<M>:CONDition {HIGH | LOW |
INSide | OUTSide}
The :MEASure:QUALifier<M>:CONDition command sets the condition when
valid timing measurements are made
Above Middle Threshold (HIGH)
Below Middle Threshold (LOW)
Between Upper, Lower Thresholds (INSide)
Not Between Thresholds (OUTSide)
<M> An integer, 1-3.
Example This example sets the level qualifier 2 condition to HIGH.
myScope.WriteString ":MEASURE:QUALIFIER2:CONDITION HIGH"
Query :MEASure:QUALifier<M>:CONDition?
The :MEASure:QUALifier<M>:CONDition? query returns the condition being
used of the level qualifier.
Returned Format
[:MEASure:QUALifier<M>:CONDition] <source><NL>
Example This example places the current condition of level qualifier for timing
measurements in the source variable and displays it on the computer's
screen.
myScope.WriteString ":SYSTEM:HEADER OFF" ' Response headers off.
myScope.WriteString ":MEASURE:QUALIFIER2:CONDition?"
varSource = myScope.ReadNumber
Debug.Print FormatNumber(varSource, 0)