Integrating second order differential equation BVP error
Mostra commenti meno recenti
I get the error "Warning: Explicit solution could not be found." when trying to integrate this BVP.
I've attached a picture of the DE here.
https://imgur.com/a/j6eJERx
Why is it failing?
syms y(x)
epsilon = .0001
ode = epsilon*diff(y,x,2)-(3*x+2)*diff(y,x)+y^2 == 0;
cond1 = y(0) == -3/log(2);
cond2 = y(1) == 1;
conds = [cond1 cond2];
ySol(x) = dsolve(ode,conds)
end
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Ordinary Differential Equations in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!