Statistic

SCPI Commands

HANDler:BIN:STATistic:COUNt
HANDler:BIN:STATistic:RESet
HANDler:BIN:STATistic
class StatisticCls[source]

Statistic commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_count() int[source]
# SCPI: HANDler:BIN:STATistic:COUNt
value: int = driver.handler.bin.statistic.get_count()

Queries the total number of samples measured since reset The query returns the sum of all counts.

return:

count: No help available

get_value() List[int][source]
# SCPI: HANDler:BIN:STATistic
value: List[int] = driver.handler.bin.statistic.get_value()

Queries the number of samples counted in the bins. The query returns 8 integer values.

return:

statictics: No help available

reset() None[source]
# SCPI: HANDler:BIN:STATistic:RESet
driver.handler.bin.statistic.reset()

Resets the evaluated binning measurement statistics.

reset_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: HANDler:BIN:STATistic:RESet
driver.handler.bin.statistic.reset_with_opc()

Resets the evaluated binning measurement statistics.

Same as reset, but waits for the operation to complete before continuing further. Use the RsLcx.utilities.opc_timeout_set() to set the timeout value.

param opc_timeout_ms:

Maximum time to wait in milliseconds, valid only for this call.