Differential equations using ODE45
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Star1202
el 15 de Oct. de 2020
Comentada: Md Muzakkir Quamar
el 15 de Oct. de 2020
please help me in solving this question..
Q. solve:
dy1/dt = y2
dy2/dt = 1000*y2*(1-y1^2)-y1
given initial conditions : y1(0) = 0 and y2(0) = 1.
0 comentarios
Respuesta aceptada
Más respuestas (1)
Md Muzakkir Quamar
el 15 de Oct. de 2020
tspan = [0 20];
Y_int=[0 1];
[t,x] = ode45(@odefcn,tspan,Y_int,[],a, b, c, u);
figure(1)
plot(t,y(:,1),'r',t,y(:,2),'b')
function dydt = odefcn(t,y)
dydt = zeros(2,1);
dydt(1) = y(2);
dydt(2) = 1000*y(2)*(1-y(1)^2)-y(1);
end
2 comentarios
Ver también
Categorías
Más información sobre Ordinary Differential Equations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!