Technical data
870 Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference
32 Waveform Commands
:WAVeform:BANDpass?
Query :WAVeform:BANDpass?
The :WAVeform:BANDpass? query returns an estimate of the maximum and
minimum bandwidth limits of the source waveform. The bandwidth limits
are computed as a function of the coupling and the selected filter mode.
The cutoff frequencies are derived from the acquisition path and software
filtering.
Returned Format [:WAVeform:BANDpass]<lower_cutoff>,<upper_cutoff><NL>
<lower_cutoff> Minimum frequency passed by the acquisition system.
<upper_cutoff> Maximum frequency passed by the acquisition system.
Example This example places the estimated maximum and minimum bandwidth
limits of the source waveform in the string variable, strBandwidth, then
prints the contents of the variable to the computer's screen.
Dim strBandwidth As String ' Dimension variable.
myScope.WriteString ":WAVEFORM:BANDPASS?"
strBandwidth = myScope.ReadString
Debug.Print strBandwidth