From d5962d232258996da4969fe00b4fd117d003e479 Mon Sep 17 00:00:00 2001 From: Connor Moore Date: Sat, 25 Apr 2026 21:38:01 -0400 Subject: Finished section 2 and section 3 --- report/figures/tracy-widom-approx/plot.gnu | 31 ++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 report/figures/tracy-widom-approx/plot.gnu (limited to 'report/figures/tracy-widom-approx/plot.gnu') diff --git a/report/figures/tracy-widom-approx/plot.gnu b/report/figures/tracy-widom-approx/plot.gnu new file mode 100644 index 0000000..a2e5194 --- /dev/null +++ b/report/figures/tracy-widom-approx/plot.gnu @@ -0,0 +1,31 @@ +#set term x11 persist +set term cairolatex pdf size 6in,3in +set output 'tracy_widom.tex' +set linetype 1 lc rgb '#E41A1C' # red +set linetype 2 lc rgb '#377EB8' # blue +set linetype 3 lc rgb '#4DAF4A' # green + +set key samplen 2 +set grid +set xlabel "x" +set ylabel "p(x)" +set lmargin at screen 0.15 +set rmargin at screen 0.85 + + +plot 'tracy_widom.txt' using 1:2 with lines title '$\beta=1$', \ + 'tracy_widom.txt' using 1:3 with lines title '$\beta=2$', \ + 'tracy_widom.txt' using 1:4 with lines title '$\beta=4$' + +set term cairolatex pdf size 6in,3in +set output 'tracy_widom_compare.tex' +set key samplen 2 +set grid +set xlabel "x" +set ylabel "p(x)" +set lmargin at screen 0.15 +set rmargin at screen 0.85 + + +plot 'tracy_widom_normal.txt' using 1:2 with lines title 'TW\textsubscript{1}', \ + 'tracy_widom_normal.txt' using 1:3 with lines title 'Normal' dt 2 -- cgit v1.2.3