フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Graphing/Solving Differential Equation

1 回表示 (過去 30 日間)
jake stan
jake stan 2018 年 3 月 19 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I tried to solve it by using dsolve, however I'm not even sure if I'm doing it right. How do I get it in terms of x? Would the equivalent equation to the 2nd ODE in that picture be D2y=-P*t/bstiff
syms bstiff P t L
def=dsolve('D2y=-P*t/bstiff','y(L)=0','Dy(L)=0')
slope=diff(def)
L = 2.0;
edef=subs(def)
eslo=subs(slope)
f = symfun(eslo + edef, t);
bstiff = 1.0; P = 1.0;
ef = subs(f);
fplot(ef, [0 L])
end
  1 件のコメント
Birdman
Birdman 2018 年 3 月 19 日
Have you tried my answer?

回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by