Single ODE solved with ODE45
古いコメントを表示
wspan = 0:0.01:10000;
x0 = 0;
[w,x] = ode45(@(w,x) (0.012528*(1-(9.8*10^(-5)*w))*(1.5-x)*(1-x))/(45*(1+16.68...
*(1-(9.8*10^(-5)*w))^(0.5)*x+12.456*(1-(9.8*10^(-5)*w))^(0.5)*(1-x))),wspan, x0);
plot(w,x,'-o');
I wrote the simple code above with the hope to replicate a graph that I obtained from excel. However, the range of x on the vertical axis in the MATLAB plot are way smaller than what I've expected. Could someone please explain to me how to fix it such that it matches my excel plot. (the excel plot is proven to be correct) Thanks, much appreciated. Attached (Excel Plot & MATLAB Plot)
3 件のコメント
Star Strider
2017 年 10 月 14 日
What is the original differential equation?
Jan
2017 年 10 月 14 日
Note: 9.8*10^(-5) is a multiplication and an expensive power operation in every call of the function, while 9.8e-5 is a cheap constant. SQRT(x) is much faster than x^0.5. Runtime is not your problem here, but it is worth to keep this in mind.
Star Strider's idea is obviously right: If the output by Excel is proven to be correct, and the Matlab code does not produce the same result, the Matlab code contains a different formula. We cannot fix it without seeing the correct formula.
Michelle Zhou
2017 年 10 月 16 日
回答 (1 件)
David Goodmanson
2017 年 10 月 16 日
編集済み: David Goodmanson
2017 年 10 月 19 日
0 投票
Hi Michelle,
Looks like your constant of .012528 is off by a factor of 10, should be .12528. Once that change is made, there is good agreement with the excel plot.
カテゴリ
ヘルプ センター および File Exchange で Ordinary Differential Equations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!