Solve the initial value problem (xlogx)y'=2y, y(2)=(log2)^2
Afficher commentaires plus anciens
How do i solve this in MATLAB
Réponses (1)
syms y(x)
eqn = x*log(x)*diff(y,x)==2*y;
cond = y(2)==log(2)^2;
ysol(x) = dsolve(eqn,cond)
Best wishes
Torsten.
Catégories
En savoir plus sur Mathematics dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!