While solving boundary value problems (using bvp4c) the graph is plotted as the command ""plot (x,BS(1,:))"" but if I want the graph between x and y and not x and boundary solution (BS) what should I do ?

This is the matlab script :
init = bvpinit(linspace(-1,1,20),[0 0]);
sol=bvp4c(@rhs_bvp,@bc_bvp,init);
x = linspace(-1,1,20);
BS=deval(sol,x);
plot(x,BS(1,:));
I do not understand the purpose of deval, also the graph i want to plot is between x and y not x and boundary solutions (bs).
How can i do that ?

Más respuestas (0)

Etiquetas

Preguntada:

el 13 de Jul. de 2019

Respondida:

el 14 de Jul. de 2019

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by