dsolve second order differential equation

1 回表示 (過去 30 日間)
esat gulhan
esat gulhan 2020 年 4 月 11 日
コメント済み: esat gulhan 2020 年 4 月 11 日
I am working on second order diferantial question,
y"=0.0008742
y(0)=0 , y(585.8)=150,
My code is below
syms y(x)
eqn = diff(y,x,2) == 0.00087422358746158224444900076826769;
Dy = diff(y,x);
cond = [y(0)==0, y(585.8)==150];
ySol(x) = dsolve(eqn,cond)
Dy(585.8)
I want to find Dy at 585.8, but i cant find solution
it gives, D(y)(2929/5) but it is useless
how can i find Dy(585.8),

採用された回答

Torsten
Torsten 2020 年 4 月 11 日
dySol=diff(ySol,x);
dySol(585.8)
  1 件のコメント
esat gulhan
esat gulhan 2020 年 4 月 11 日
Excellent, thank you

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeEquation Solving についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by