Count

SCPI Commands

SENSe:AVERage:COUNt
class CountCls[source]

Count commands group definition. 1 total commands, 0 Subgroups, 1 group commands

get() float[source]
# SCPI: [SENSe]:AVERage:COUNt
value: float = driver.sense.average.count.get()

This command defines the number of measurements that the application uses to average traces. In case of continuous sweep mode, the application calculates the moving average over the average count. In case of single sweep mode, the application stops the measurement and calculates the average after the average count has been reached.

return

average_count: If you set an average count of 0 or 1, the application performs one single measurement in single sweep mode. In continuous sweep mode, if the average count is set to 0, a moving average over 10 measurements is performed. Range: 0 to 200000

set(average_count: float) None[source]
# SCPI: [SENSe]:AVERage:COUNt
driver.sense.average.count.set(average_count = 1.0)

This command defines the number of measurements that the application uses to average traces. In case of continuous sweep mode, the application calculates the moving average over the average count. In case of single sweep mode, the application stops the measurement and calculates the average after the average count has been reached.

param average_count

If you set an average count of 0 or 1, the application performs one single measurement in single sweep mode. In continuous sweep mode, if the average count is set to 0, a moving average over 10 measurements is performed. Range: 0 to 200000