Find the general solution of the equation y′−y= y2ex.
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Find the general solution of the equation y′−y= y2ex.
1 comentario
John D'Errico
el 30 de Jul. de 2020
PLEASE STOP POSTING YOUR HOMEWORK ASSIGNMENTS. Worse, this is now the second time you asked this question.
Respuestas (1)
Sriram Tadavarty
el 30 de Jul. de 2020
Hi Satyanarayana,
Here is the code, that you might be looking for:
syms y(x) a
eqn = diff(y,x)-y == y^2*exp(x);
ySol(x) = dsolve(eqn)
Hope this helps.
Regards,
Sriram
1 comentario
Ver también
Categorías
Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!