how to Solve the ordinary differential equation (ODE) in matlab? dx/dt=5x−3

9 views (last 30 days)
Solve the ordinary differential equation (ODE) dx/dt=5x−3

Answers (1)

KSSV
KSSV on 20 Nov 2022
syms x(t)
eqn = diff(x,t)==5*x-3;
s = dsolve(eqn)
s = 

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!