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 ExchangeMathematics についてさらに検索

製品

リリース

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