summaryrefslogtreecommitdiff
path: root/ckt0.gp
diff options
context:
space:
mode:
authorwukong <wukong@longaeva>2026-02-17 16:20:04 -0800
committerwukong <wukong@longaeva>2026-02-17 16:20:04 -0800
commite13d388ced9ae1269b19506051a7d70d2113b9a8 (patch)
tree0ec347b542c39241218afb5a5f4ef384760af370 /ckt0.gp
parent1961c8dbb25fb7fadfda805bea7d60fba143a436 (diff)
added ckt0.gp (gnuplot) to plot logged estimates;HEADmaster
changed sprintf parameter from %.f to %d due to round off effects;
Diffstat (limited to 'ckt0.gp')
-rw-r--r--ckt0.gp32
1 files changed, 32 insertions, 0 deletions
diff --git a/ckt0.gp b/ckt0.gp
new file mode 100644
index 0000000..4964fd1
--- /dev/null
+++ b/ckt0.gp
@@ -0,0 +1,32 @@
+
+# set datafile separator comma;
+set key autotitle columnhead;
+# set terminal dumb size 192,56;
+
+set grid;
+# 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 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 unc v unc
+# plot 't0.log' using 3:5 with dots;
+# plot 't0.log' using 3:7 with points;
+# plot 't0.log' using 5:7 with dots;
+
+### plot uptime v data
+# plot 't0.log' using 4:2 with dots;
+# plot 't0.log' using 4:3 with dots;
+# plot 't0.log' using 4:5 with dots;
+# plot 't0.log' using 4:6 with dots;
+# 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;