フィルターのクリア

Wrong plot with ode15s

3 ビュー (過去 30 日間)
Sam
Sam 2017 年 12 月 21 日
回答済み: Star Strider 2017 年 12 月 21 日
I'm trying to plot the solution for the following differential equation
function y=probleemvergelijking(t,x)
y = (-100*x + 1 + 100*t);
Then i solve it with ode15s...
[y,t] = ode15s(@probleemvergelijking, [0 50], 1);
plot(y,t)
But the plot is just a straight line... What did i do wrong?

回答 (1 件)

Star Strider
Star Strider 2017 年 12 月 21 日
You did nothing wrong, really.
Try this:
[t,y] = ode15s(@probleemvergelijking, [0 50], 1);
semilogx(t,y)
Your function stays near zero for a few values of ‘t’, then rapidly approaches 50 because the ‘100*t’ term predominates.

カテゴリ

Help Center および File ExchangeOrdinary Differential Equations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by