masterarbeit/dokumentation/evolution1d/20171005-evolution1D_7x7_100Times.gnuplot.script

21 lines
1.0 KiB
Plaintext
Raw Normal View History

2017-10-05 12:27:39 +00:00
set datafile separator ","
f(x)=a*x+b
fit f(x) "20171005-evolution1D_7x7_100Times.csv" every ::1 using 2:5 via a,b
set terminal png
2017-10-24 11:22:20 +00:00
set xlabel 'Regularity'
set ylabel 'Iterations'
2017-10-05 12:27:39 +00:00
set output "20171005-evolution1D_7x7_100Times_regularity-vs-steps.png"
plot "20171005-evolution1D_7x7_100Times.csv" every ::1 using 2:5 title "data", f(x) title "lin. fit" lc rgb "black"
g(x)=aa*x+bb
fit g(x) "20171005-evolution1D_7x7_100Times.csv" every ::1 using 4:5 via aa,bb
2017-10-24 11:22:20 +00:00
set xlabel 'Improvement potential'
set ylabel 'Iterations'
2017-10-05 12:27:39 +00:00
set output "20171005-evolution1D_7x7_100Times_improvement-vs-steps.png"
plot "20171005-evolution1D_7x7_100Times.csv" every ::1 using 4:5 title "data", g(x) title "lin. fit" lc rgb "black"
h(x)=aaa*x+bbb
fit h(x) "20171005-evolution1D_7x7_100Times.csv" every ::1 using 4:6 via aaa,bbb
2017-10-24 11:22:20 +00:00
set xlabel 'Improvement potential'
set ylabel 'Fitting error'
2017-10-05 12:27:39 +00:00
set output "20171005-evolution1D_7x7_100Times_improvement-vs-evo-error.png"
plot "20171005-evolution1D_7x7_100Times.csv" every ::1 using 4:6 title "data", h(x) title "lin. fit" lc rgb "black"