How can these equations be converted into the format to be input in bvp4c ODE solver ?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Aryaman Patel
el 13 de Jul. de 2019
Editada: Aryaman Patel
el 12 de Mayo de 2021
Ho do I convert these boundary conditions to equations acceptable in MATLAB?
0 comentarios
Respuesta aceptada
darova
el 13 de Jul. de 2019
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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Numerical Integration and Differential Equations 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!