Solve the differential equation

34 visualizaciones (últimos 30 días)
yo yo
yo yo el 18 de Jun. de 2020
Respondida: KSSV el 18 de Jun. de 2020
(x+2x)^3dx+(y+2y)^3dy=0

Respuestas (2)

Ameer Hamza
Ameer Hamza el 18 de Jun. de 2020
Editada: Ameer Hamza el 18 de Jun. de 2020
Use ode45(). Try following code
xspan = [0 1];
ic = 1; % initial condition
[t, y_sol] = ode45(@odeFun, xspan, ic);
plot(t, y_sol);
legend({'y'});
function dydx = odeFun(x, y)
dydx = -(x/y).^3;
end

KSSV
KSSV el 18 de Jun. de 2020
syms x y(x)
ode = diff(y,x)+(x+2*x)^3/(y+2*y)^3==0 ;
sol = dsolve(ode) ;
celldisp(sol)

Categorías

Más información sobre Ordinary Differential Equations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by