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,7 @@
import num_int_runge_kutta as rk
f = lambda ti, xi, yi: yi - ti
g = lambda ti, xi, yi: xi + yi
funktionswerte = rk.verfahren([f, g], [0, 0, 1], 0.6, 3)
print(funktionswerte)