Meine alten Sachen aus RALV

This commit is contained in:
2025-10-15 11:32:56 +02:00
commit c89b932d55
17 changed files with 763 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import num_int_runge_kutta as rk
f = lambda xi, yi: xi + yi
funktionswerte = rk.verfahren([f], [0, 0], 1, 5)
print(funktionswerte)