Technical data
554 Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference
24 Measure Commands
The :MEASure:PERiod? query returns the measured period of the specified
source.
Returned Format
[:MEASure:PERiod] <value>[,<result_state>]<NL>
<value> Period of the first complete cycle on the screen.
<result_state> If SENDvalid is ON, the result state is returned with the measurement
result. See the :MEASure:RESults table in this chapter for a list of the
result states.
Example This example places the current period of the waveform in the numeric
variable, varValue, then prints the contents of the variable to the
computer's screen.
myScope.WriteString ":SYSTEM:HEADER OFF" ' Response headers off.
myScope.WriteString ":MEASURE:PERIOD? CHANNEL1"
varValue = myScope.ReadNumber
Debug.Print FormatNumber(varValue, 0)