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 ?
1 回表示 (過去 30 日間)
古いコメントを表示
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 ?
0 件のコメント
採用された回答
infinity
2019 年 7 月 14 日
Hello,
You might simply plot x and y like this
plot(sol.x, sol.y, '-o')
Several examples of how to use bvp4 and deval can be seen here
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Boundary Value Problems についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!