blog/content/sundries/a-very-digital-artifact/plot.gnuplot
2023-01-18 23:56:54 -08:00

9 lines
142 B
Gnuplot

f(x) = x**0.41
set terminal png size 600,600
set output 'exp_scaling.png'
set grid
set xrange [0:1]
set yrange [0:1]
plot f(x) lw 3 notitle