How can these equations be converted into the format to be input in bvp4c ODE solver ?
3 次查看(过去 30 天)
显示 更早的评论
Ho do I convert these boundary conditions to equations acceptable in MATLAB?
0 个评论
采纳的回答
darova
2019-7-13
This is an example from mathworks
It is yours
% u(-1) == ya(1)
% du(-1) == ya(2)
% u(1) == yb(1)
% du(1) == yb(2)
u(-1)-a*du(-1)-1 = 0
u(1)+a*du(1)+1 = 0
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Numerical Integration and Differential Equations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!