dsolve second order differential equation

1 Ansicht (letzte 30 Tage)
esat gulhan
esat gulhan am 11 Apr. 2020
Kommentiert: esat gulhan am 11 Apr. 2020
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),

Akzeptierte Antwort

Torsten
Torsten am 11 Apr. 2020
dySol=diff(ySol,x);
dySol(585.8)

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by