필터 지우기
필터 지우기

implicit function ,differeation

조회 수: 3 (최근 30일)
jin yong
jin yong 2023년 2월 4일
답변: Torsten 2023년 2월 5일
here we have implicit function , caculate
  댓글 수: 1
Dyuman Joshi
Dyuman Joshi 2023년 2월 5일
What does this question have to do with MATLAB? Specify through words, no one here can read your mind.

댓글을 달려면 로그인하십시오.

답변 (1개)

Torsten
Torsten 2023년 2월 5일
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 = 

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by