Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

20 строки
637B

  1. set terminal png size 1000,1000
  2. set output 'iterative_solvers_plot.png'
  3. set logscale xy
  4. set ylabel "Laufzeit in Sekunden"
  5. set xlabel "Matrixgröße"
  6. set format y "%g"
  7. plot 'richardson_1.dat' title "Richardson Iteration v1", \
  8. 'richardson_2.dat' title "Richardson Iteration v2", \
  9. 'jacobi_1.dat' title "Jacobi Iteration v1", \
  10. 'jacobi_2.dat' title "Jacobi Iteration v2",\
  11. 'gauss_seidel_1.dat' title "Gauss Seidel Iteration v1",\
  12. 'gauss_seidel_2.dat' title "Gauss Seidel Iteration v2",\
  13. 'linsolve_1.dat' title "hdnum::linsolve",\
  14. 0.000000020*x**4 title "c n^4", \
  15. 0.000000025*x**3 title "b n^3"