how to write the boundary values for ode
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
i have the boundary values like
a(0)=1, a'(1)=0
and
b(1)=1, b'(0)=0
is this following code correct for my boundary
function [pl,ql,pr,qr] = pdex4bc(~,ul,~,ur,~)
pl = [ul(1)-1;0];
ql = [0;1];
pr = [0;ur(2)-1];
qr = [1;0];
1 commentaire
Réponses (0)
Voir également
Catégories
En savoir plus sur Ordinary Differential Equations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!