Comment out some more free() calls, which need to be turned on per-subsystem to weed...
[Math-GSL.git] / examples / sf / plot_bessel.gnuplot
blob92eeaf4b84ea6a75c6e4e608fea9073503ce3bc1
1 set title "Bessel Functions J_0(x), J_1(x), J_2(x), J_3(x), J_4(x), J_5(x)"
3 set terminal png
4 set output "bessel.png"
6 plot "bessel.data" using 1:7 t 'J_5(x)' with lines, "bessel.data" using 1:6 t 'J_4(x)' with lines, "bessel.data" using 1:5 t 'J_3(x)' with lines, "bessel.data" using 1:4 t 'J_2(x)' with lines, "bessel.data" using 1:3 t 'J_1(x)' with lines, "bessel.data" using 1:2 title 'J_0(x)' with lines 
8 unset output
9 set terminal x11
11 replot