python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Can I find ode23, ode45, and ode113 solvers in Scilab?
Can I find ode solvers (ode23, ode45, and ode113) in Scilab?
I use these solvers in MATLAB, but I have no idea if there is the same option in Scilab or not.
Thanks in advance.
Dr.mark
Votes: 0
Answers: 1
Solving log-transformed ODE system without overflow error
I have a system of ODEs where my state variables and independent variable span many orders of magnitude (initial values are around 0 at t=0 and are expected to become about 10¹⁰ by t=10¹⁷). I also wan...
quantumflash
Votes: 0
Answers: 1
Trying to infer model parameter of Lotka-Volterra model
def derivative(X, t, A, B, C, D):
x, y = X
dotx = x * (A - B * y)
doty = y * (-D + C * x)
return np.array([dotx, doty])
def integration(t,A,B,C,D,X0):
res = odeint(derivative, X0,...
Michael
Votes: 0
Answers: 1
SymPy returns wrong solution of a nonlinear ODE?
I am trying to solve the ODE of the frictional free fall:
from sympy import *
t = symbols ('t')
v = Function ('v')
dgl = Eq (diff (v(t), t) + v(t)**2, 1)
erg = dsolve (dgl)
I think the solution mi...

Jörg J. Buchholz
Votes: 0
Answers: 1