Problem in ezplot with simple equation
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Camilo Sánchez
el 23 de Abr. de 2018
Comentada: Star Strider
el 23 de Abr. de 2018
s=dsolve ('Dy=(t+y)^(1/2)','y(0.4)=0.41')
ezplot(s,[0.4,10])
Whats wrong???
0 comentarios
Respuesta aceptada
Star Strider
el 23 de Abr. de 2018
Not all differential equations have analytical solutions. Fortunately, ode45 will integrate this without problems:
DE = @(t,y) (t+y)^(1/2);
[T,Y]= ode45(DE, [0.4 10], 0.41);
figure(1)
plot(T,Y)
grid
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Particle & Nuclear Physics 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!