Meine alten Sachen aus RALV
This commit is contained in:
7
Numerische_Integration/rk_DGL_2Ordnung_2.py
Normal file
7
Numerische_Integration/rk_DGL_2Ordnung_2.py
Normal file
@@ -0,0 +1,7 @@
|
||||
import num_int_runge_kutta as rk
|
||||
|
||||
f = lambda xi, yi, ui: ui
|
||||
g = lambda xi, yi, ui: 4 * ui - 4 * yi
|
||||
|
||||
funktionswerte = rk.verfahren([f, g], [0, 0, 1], 0.6, 2)
|
||||
print(funktionswerte)
|
||||
Reference in New Issue
Block a user