Solve the following differential equations using Matlab.

3 views (last 30 days)

ⅆp ⅆx + 8p = 9, p(0) = −1

Answers (1)

KSSV
KSSV on 17 Aug 2022
syms p(x)
ode = diff(p)+8*p==9 ;
cond = p(0)==-1 ;
pSol(x) = dsolve(ode,cond)
pSol(x) = 

Tags

Products

Community Treasure Hunt

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

Start Hunting!