User manual

Table Of Contents
MAUI Oscilloscopes Remote Control and Automation Manual
PopulationInside
Population of the histogram for events contained within the number of bins configured.
Applies to: Histogram
Dim PopInside as Long
PopInside = app.Math.F1.Out.Result.PopulationInside
PopulationOfRectangle
Population of the selected rectangle.
Applies to: Persist
Arguments
numColumns Long -1 = retrieve all columns
Number of columns to retrieve. Default is -1.
numRows Long -1 = retrieve all rows Number of rows to retrieve. Default is -1.
startColumn Long 0 = first sample Index of the first column to be retrieved. Default is 0.
startRow Long 0 = first row
Index of the first row to be retrieved. Default is 0.
Example
Dim numColumns As Long
Dim numRows As Long
Dim startColumn As Long
Dim startRow As Long
Dim PopulationOfRectangle As Long
numColumns = Cells(9, 5)
numRows = Cells(10, 5)
startColumn = Cells(11, 5)
startRow = Cells(12, 5)
PopulationOfRectangle =
app.SDA.Eye.Out.Result.PopulationOfRectangle
(numColumns,numRows,startColumn,startRow)
PopulationOfRectangle = app.SDA.Eye.Out.Result.PopulationOfRectangle
(numColumns,numRows,startColumn,startRow)
PopulationOver
Population of the events greater than the last bin.
Applies to: Histogram
Dim PopOver as Long
PopOver = app.Math.F1.Out.Result.PopulationOver
4-20