19 lines
353 B
Gnuplot
19 lines
353 B
Gnuplot
|
set terminal postscript enhanced
|
||
|
|
||
|
set key bottom right
|
||
|
|
||
|
set title "3-D Truthiness, Resolution 3"
|
||
|
|
||
|
set xlabel "Number of Extra Points, S_k"
|
||
|
set ylabel "Percent of Improved Interpolations"
|
||
|
|
||
|
set log x
|
||
|
|
||
|
set yrange [0:1]
|
||
|
|
||
|
plot 'data.out' \
|
||
|
u 1:10 t 'order 2' w lp, \
|
||
|
'' u 1:11 t 'order 3' w lp, \
|
||
|
'' u 1:12 t 'order 4' w lp, \
|
||
|
'' u 1:13 t 'order 5' w lp;
|