Files
sf-op/script/testVD85.py
2017-01-16 10:11:46 +01:00

10 lines
217 B
Python

x = Channel(bpm_ch + ":X1-SIMU", type = 'd', alias='BPM-X')
print("x = ", x)
xb = create_averager(x, 5, 0.100)
print(xb.min)
print(xb.max)
print(xb.mean)
print(xb.stdev)
print(xb.variance)
x.close()