How to plot a first order differential equation with singular point?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
mathango
le 17 Août 2016
Commenté : mathango
le 17 Août 2016
Is there a way to plot a first or second order differential equation with singular point? Example equation:
(1-y^2)*y" + 5*y' + 3*y = 0
Usually I get error message from ode about division by zero.
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 17 Août 2016
Save this file as odef.m
function dx=odef(t,x)
dx=zeros(2,1)
dx(1)=x(2);
dx(2)=(-5*x(2)-3*x(1))/(1-x(1)^2)
Then call it
%y'(0)=0.1 and y(0)=0.1 are initial conditions
tspan=[0 10]
[t,y]=ode45(@odef,tspan,[0.1 ;0.1])
plot(t,y)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Ordinary Differential Equations dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!