From ef4db4f122fb1187f99ea1f5e785c239f3e8d63a Mon Sep 17 00:00:00 2001 From: Tomas Mudrunka Date: Fri, 3 Aug 2012 07:26:43 +0200 Subject: [PATCH] Averaging multiple averages is supercool, but i've just realized drawback of my averaging method --- c/goertzel/sleepplot.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/c/goertzel/sleepplot.sh b/c/goertzel/sleepplot.sh index ea0bac2..ab68226 100755 --- a/c/goertzel/sleepplot.sh +++ b/c/goertzel/sleepplot.sh @@ -38,11 +38,13 @@ set grid #set pointsize 0.5 plot\ "$in" using 2:5 title "Sensor state" with steps,\ -"" using 2:(\$6*2) title "Avg. 10s" with lines,\ -"" using 2:(\$7*3) title "Avg. 30s" with lines,\ -"" using 2:(\$8*3) title "Avg. 60s" with lines,\ -"" using 2:(\$9*3) title "Avg. 90s" with lines,\ -"" using 2:(\$10*4) title "Avg. 120s" smooth bezier\ +"" using 2:((\$6*3+\$7*6+\$8*6+\$9+\$10)/5) title "Avg." with lines\ +#"" using 2:(\$6*2) title "Avg. 10s" with lines,\ +#"" using 2:(\$7*3) title "Avg. 30s" with lines,\ +#"" using 2:(\$8*3) title "Avg. 60s" with lines,\ +#"" using 2:(\$9*3) title "Avg. 90s" with lines,\ +#"" using 2:(\$10*4) title "Avg. 120s" smooth bezier\ + EOF