I have an equation like
y * sin( y ) = x * sin( x );
And I'm gonna plot it but its an unsolvable equation and I cant solve it for x or y and plot it normally.
How can I plot this kind of equations?

 채택된 답변

DGM
DGM 2022년 2월 11일

0 개 추천

You can use fimplicit()
syms x y
eq1 = y * sin( y ) == x * sin( x );
fimplicit(eq1,[-10 10 -10 10])

추가 답변 (1개)

Matt J
Matt J 2022년 2월 11일

1 개 추천

fcn=@(x,y) y .* sin( y ) - x .* sin( x );
fimplicit(fcn)

카테고리

도움말 센터File Exchange에서 Line Plots에 대해 자세히 알아보기

제품

릴리스

R2021b

태그

질문:

2022년 2월 11일

답변:

DGM
2022년 2월 11일

Community Treasure Hunt

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

Start Hunting!

Translated by