From 40548183b45666afc50373b0ee172465660fc479 Mon Sep 17 00:00:00 2001 From: wukong Date: Tue, 14 Apr 2026 20:45:20 -0700 Subject: changed plot markers to dots; reduced iteration in ckt0.sh; --- ckt0.gp | 22 ++++++++++++---------- ckt0.sh | 2 +- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/ckt0.gp b/ckt0.gp index 4964fd1..188436f 100644 --- a/ckt0.gp +++ b/ckt0.gp @@ -1,24 +1,25 @@ # set datafile separator comma; set key autotitle columnhead; -# set terminal dumb size 192,56; +set terminal dumb size 192,42; -set grid; +# set grid; +# set logscale x; # set logscale y; ### plot time v data -# plot 't0.log' using 2:3 with points; -# plot 't0.log' using 2:5 with points; -# plot 't0.log' using 2:6 with points; +# plot 't0.log' using 2:3 with dots; +# plot 't0.log' using 2:4 with dots; +# plot 't0.log' using 2:6 with dots; ### plot est v unc -# plot 't0.log' using 2:3 with points; -# plot 't0.log' using 4:5 with points; -# plot 't0.log' using 6:7 with points; +# plot 't0.log' using 2:3 with dots; +# plot 't0.log' using 4:5 with dots; +# plot 't0.log' using 6:7 with dots; ### plot unc v unc # plot 't0.log' using 3:5 with dots; -# plot 't0.log' using 3:7 with points; +# plot 't0.log' using 3:7 with dots; # plot 't0.log' using 5:7 with dots; ### plot uptime v data @@ -29,4 +30,5 @@ set grid; # plot 't0.log' using 4:7 with dots; # plot 't0.log' using 2:4:(0.5*$5) with errorbars; -plot 't0.log' using 4:6:(0.5*$7) with errorbars; +# plot 't0.log' using 4:6:(0.5*$7) with errorbars; + diff --git a/ckt0.sh b/ckt0.sh index 7d58bd6..76a9c09 100644 --- a/ckt0.sh +++ b/ckt0.sh @@ -20,7 +20,7 @@ if [ -f /tmp/t0_est.log ] ; then { } fi printf "n t_est t_unc t_up_est t_up_unc t0_est t0_unc\n" | column -t -for N in $(seq 0 10080) ; do +for N in $(seq 0 1440) ; do printf "${N} ${t0_est}\n" | column -t t0_est=$( awk -f ckt0.awk ${t0_est} | tail -n2 ) -- cgit v1.2.3