Technical data
Measure Commands 24
Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference 599
:MEASure:THResholds:METHod
Command :MEASure:THResholds:METHod <source>,{ABSolute | PERCent | HYSTeresis}
The :MEASure:THResholds:METHold command determines the way that the
top and base of a waveform are calculated for all of the measurements
that use them.
<source> {ALL | CHANnel<N> | FUNCtion<N> | WMEMory<N> | CLOCk | MTRend
| MSPectrum | EQUalized}
MTRend and MSPectrum sources are only available if the oscilloscope has
the EZJIT option installed and the feature is enabled.
The CLOCk source is only available if the oscilloscope has the High Speed
Serial option installed and the feature is enabled.
The EQUalized source is only available if the oscilloscope has the High
Speed Serial option and the Serial Data Equalization option installed and
the features are enabled. This command uses the Feed- Forward Equalized
(FFE) signal as the source. Setting the source to ALL does not affect the
individual channel settings which is the behavior as the user interface.
<N> is an integer, 1 - 4.
Example This example sets the method used to calculate the top and base of a
waveform to hysteresis.
myScope.WriteString ":SYSTEM:HEADER OFF" ' Response headers off.
myScope.WriteString ":MEASURE:THRESHOLDS:METHOD CHANNEL1,HYSTERESIS"
Query :MEASure:THResholds:METHod?
The :MEASure:THResholds:METHod? query returns the current method
being used to calculate the top and base of a waveform.
Returned Format
[:MEASure:THResholds:METHod <source>,] {ABSolute | PERCent | HYSTeresis}
Example This example returns the method used to calculate the top and base of a
waveform to hysteresis.
myScope.WriteString ":SYSTEM:HEADER OFF" ' Response headers off.
myScope.WriteString ":MEASURE:THRESHOLDS:METHOD?"
varMethod = myScope.ReadNumber
Debug.Print FormatNumber(varMethod, 0)