Solve the following differential equations using Matlab.
Afficher commentaires plus anciens
ⅆp ⅆx + 8p = 9, p(0) = −1
Réponses (1)
syms p(x)
ode = diff(p)+8*p==9 ;
cond = p(0)==-1 ;
pSol(x) = dsolve(ode,cond)
Catégories
En savoir plus sur Programming dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!