How to plot unsolvable equation

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?

 Risposta accettata

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

Più risposte (1)

Categorie

Scopri di più su Mathematics in Centro assistenza e File Exchange

Prodotti

Release

R2021b

Richiesto:

il 11 Feb 2022

Risposto:

DGM
il 11 Feb 2022

Community Treasure Hunt

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

Start Hunting!

Translated by