implicit function ,differeation

here we have implicit function , caculate

1 Kommentar

Dyuman Joshi
Dyuman Joshi am 5 Feb. 2023
What does this question have to do with MATLAB? Specify through words, no one here can read your mind.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Torsten
Torsten am 5 Feb. 2023

0 Stimmen

syms x y(x) D2y
eqn = x + sin(y)/2 - y == 0
eqn(x) = 
d2eqn = diff(eqn,x,2)
d2eqn(x) = 
d2eqn_subs = subs(d2eqn,diff(y,x,2),D2y)
d2eqn_subs(x) = 
D2y = solve(d2eqn_subs,D2y)
D2y = 

Kategorien

Mehr zu Symbolic Math Toolbox finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 4 Feb. 2023

Beantwortet:

am 5 Feb. 2023

Community Treasure Hunt

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

Start Hunting!

Translated by