How do i solve non linear DE in matlab
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ashvin Bhat
el 10 de Feb. de 2022
Respondida: Abraham Boayue
el 11 de Feb. de 2022
Respuesta aceptada
Abraham Boayue
el 11 de Feb. de 2022
%Here is the required ode45 code.
clear variables
close all
xspan = [0 10];
y0 = 1;
[t,y] = ode45(@(x,y)x.*y.^5+x.*cos(y), xspan, y0);
plot(t,y,'linewidth',2.5)
a = title('y(x) from ode45');
set(a,'fontsize',14);
a = ylabel('y');
set(a,'Fontsize',14);
ylim( [0 10]);
grid
0 comentarios
Más respuestas (0)
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!