Technical data

872 Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference
32 Waveform Commands
:WAVeform:COMPlete?
Query :WAVeform:COMPlete?
The :WAVeform:COMPlete? query returns the percent of time buckets that
are complete for the currently selected waveform.
For the NORMal, RAW, and INTerpolate waveform types, the percent
complete is the percent of the number of time buckets that have data in
them, compared to the memory depth.
For the AVERage waveform type, the percent complete is the number of
time buckets that have had the specified number of hits divided by the
memory depth. The hits are specified by the :ACQuire:AVERage:COUNt
command.
For the VERSus waveform type, percent complete is the least complete of
the X- axis and Y- axis waveforms.
Returned Format
[:WAVeform:COMPlete] <criteria><NL>
<criteria> 0 to 100 percent, rounded down to the closest integer.
Example This example places the current completion criteria in the string variable,
strCriteria, then prints the contents of the variable to the computer's
screen.
Dim strCriteria As String ' Dimension variable.
myScope.WriteString ":WAVEFORM:COMPLETE?"
strCriteria = myScope.ReadString
Debug.Print strCriteria