Technical data
592 Agilent Infiniium 90000 Series Oscilloscopes Programmer's Reference
24 Measure Commands
:MEASure:STATistics
Command :MEASure:STATistics {{ON | 1} | CURRent | MAXimum |
MEAN | MINimum | STDDev}
The :MEASure:STATistics command determines the type of information
returned by the :MEASure:RESults? query. ON means all the statistics are
on.
Example This example turns all the statistics function on.
myScope.WriteString ":MEASURE:STATISTICS ON"
Query :MEASure:STATistics?
The :MEASure:STATistics? query returns the current statistics mode.
Returned Format
[:MEASure:STATistics] {ON | CURRent | MAXimum | MEAN | MINimum | STDDev}
<NL>
Example This example places the current mode for statistics in the string variable,
strMode, then prints the contents of the variable to the computer's screen.
Dim strMode As String ' Dimension variable.
myScope.WriteString ":MEASURE:STATISTICS?"
strMode = myScope.ReadString
Debug.Print strMode
See Also Refer to the :MEASure:RESults? query for information on the result
returned and how it is affected by the STATistics command.