From 2343a70c7d2070b10fcce8571f64df0020e385ea Mon Sep 17 00:00:00 2001 From: Joris van Rantwijk Date: Mon, 18 Apr 2016 22:21:35 +0200 Subject: [PATCH] * Evaluate sine against non-phase-adjusted reference which is a little more pessimistic but also a little more fair. --- tools/eval_sine_quality.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/eval_sine_quality.py b/tools/eval_sine_quality.py index a8a9bcf..705dd96 100644 --- a/tools/eval_sine_quality.py +++ b/tools/eval_sine_quality.py @@ -92,7 +92,7 @@ def eval_sine_quality(data): print() # Determine peak and rms deviation. - tref = ampl * numpy.sin(2 * numpy.pi / n * numpy.arange(n) + phase) + tref = ampl * numpy.sin(2 * numpy.pi / n * numpy.arange(n)) terr = dsin - tref del tref