Meine alten Sachen aus RALV
This commit is contained in:
7
Numerische_Integration/rk_DGLS_1Ordnung.py
Normal file
7
Numerische_Integration/rk_DGLS_1Ordnung.py
Normal 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)
|
||||
Reference in New Issue
Block a user