From ea7a5d883883e67604260916c212cbb7bb08d25f Mon Sep 17 00:00:00 2001 From: voulot_d Date: Mon, 16 Jan 2017 10:24:44 +0100 Subject: [PATCH] Script execution --- script/testVD85.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/script/testVD85.py b/script/testVD85.py index 517a637..3b106a3 100644 --- a/script/testVD85.py +++ b/script/testVD85.py @@ -1,8 +1,8 @@ x = Channel(bpm_ch + ":X1-SIMU", type = 'd', alias='BPM-X') xb = create_averager(x, 5, 0.100) -print(xb.min) -print(xb.max) -print(xb.mean) -print(xb.stdev) -print(xb.variance) +print 'xb.min =', xb.min +print 'xb.max =', xb.max +print 'xb.mean =', xb.mean +print 'xb.stdev =', xb.stdev +print 'xb.variance =', xb.variance x.close()