diff options
| author | Connor Moore <connor@hhmoore.ca> | 2026-04-25 21:38:01 -0400 |
|---|---|---|
| committer | Connor Moore <connor@hhmoore.ca> | 2026-04-25 21:38:01 -0400 |
| commit | d5962d232258996da4969fe00b4fd117d003e479 (patch) | |
| tree | 876ed981a609f623e835fbed33685b9538c42608 /report/figures/tracy-widom-approx/plot.gnu | |
| parent | 0fbccda615fa0b15b048b5723e5bfb359f95cd9a (diff) | |
Finished section 2 and section 3
Diffstat (limited to 'report/figures/tracy-widom-approx/plot.gnu')
| -rw-r--r-- | report/figures/tracy-widom-approx/plot.gnu | 31 |
1 files changed, 31 insertions, 0 deletions
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 |
