This commit is contained in:
2020-06-21 21:36:08 +02:00
parent a440eacb46
commit cd2df03e83
5 changed files with 377 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
set terminal png size 1000,1000
set output 'iterative_solvers_plot.png'
set logscale xy
set ylabel "Laufzeit in Sekunden"
set xlabel "Matrixgröße"
set format y "%g"
plot 'richardson_1.dat' title "Richardson Iteration v1", \
'richardson_2.dat' title "Richardson Iteration v2", \
'jacobi_1.dat' title "Jacobi Iteration v1", \
'jacobi_2.dat' title "Jacobi Iteration v2",\
'gauss_seidel_1.dat' title "Gauss Seidel Iteration v1",\
'gauss_seidel_2.dat' title "Gauss Seidel Iteration v2",\
'linsolve_1.dat' title "hdnum::linsolve",\
0.000000020*x**4 title "c n^4", \
0.000000025*x**3 title "b n^3"