Technical data

Table Of Contents
Measure Commands 25
Agilent Infiniium 9000 Series Oscilloscopes Programmer's Reference 581
:MEASure:JITTer:STATistics
Command :MEASure:JITTer:STATistics {{ON|1} | {OFF|0}}
The :MEASure:JITTer:STATistics command enables or disables jitter mode
and allows you to view: measurement histogram
(:MEASure:JITTer:HISTogram), measurement trend
(:MEASure:JITTer:TRENd), and jitter spectrum
(:MEASure:JITTer:SPsECtrum) if they are enabled.
The :MEASure:JITTer:STATistics command also turns on or off the ability
to measure all edges in the waveform; not just the first edge on screen.
Example This example turns the jitter measurement statistics and the "Measure All
Edges" mode on.
myScope.WriteString ":MEASure:JITTer:STATistics ON"
Query :MEASure:JITTer:STATistics?
The :MEASure:JITTer:STATistics? query returns the state of jitter statistics.
Returned Format
[:MEASure:JITTer:STATistics] {1 | 0}
Example This example places the current setting of the jitter statistics mode in the
variable varSetting, then prints the contents of the variable to the
computer's screen.
myScope.WriteString ":SYSTem:HEADer OFF"
myScope.WriteString ":MEASure:JITTer:STATistics?"
varSetting = myScope.ReadNumber
Debug.Print FormatNumber(varSetting, 0)