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?

 Réponse acceptée

DGM
DGM le 11 Fév 2022
You can use fimplicit()
syms x y
eq1 = y * sin( y ) == x * sin( x );
fimplicit(eq1,[-10 10 -10 10])

Plus de réponses (1)

Matt J
Matt J le 11 Fév 2022
fcn=@(x,y) y .* sin( y ) - x .* sin( x );
fimplicit(fcn)

Catégories

En savoir plus sur Line Plots dans Centre d'aide et File Exchange

Produits

Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by