7 lines
133 B
Python
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)
|