Files
Masterprojekt/Numerische_Integration/rk_DGL_1Ordnung.py
2025-10-15 11:32:56 +02:00

7 lines
133 B
Python

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