diff options
| author | Connor Moore <connor@hhmoore.ca> | 2026-04-08 02:55:16 -0400 |
|---|---|---|
| committer | Connor Moore <connor@hhmoore.ca> | 2026-04-08 02:55:16 -0400 |
| commit | b74224e8b87f8f048f5e9547c2a2ea062b0c2685 (patch) | |
| tree | daf858466632263c3d2283a8514e81056e6eb043 /plot.gnu | |
| parent | 41f0d210762d4b64c9f3805b9078c907ca048fa3 (diff) | |
Fixed statistics, pdf_tex plot for presenting
Diffstat (limited to 'plot.gnu')
| -rw-r--r-- | plot.gnu | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -1,3 +1,12 @@ -set term x11 persist +#set term x11 persist +set term cairolatex pdf size 5in,3in +set output "flux.tex" -plot 'flux.out' using 1:2 with lines +set key reverse +set grid +set xlabel "Distance [cm]" +set ylabel "$\\phi$" + + +plot 'flux.out' using 1:($2 + $3):($2 - $3) with filledcurves lc rgb "#CCCCFF" title "$\\pm 1 \\sigma$", \ + 'flux.out' using 1:2 with lines lc rgb "blue" title "$\\overbar{\\phi}$" |
