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?

 Akzeptierte Antwort

DGM
DGM am 11 Feb. 2022

0 Stimmen

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

Weitere Antworten (1)

Matt J
Matt J am 11 Feb. 2022

1 Stimme

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

Kategorien

Mehr zu Mathematics finden Sie in Hilfe-Center und File Exchange

Produkte

Version

R2021b

Gefragt:

am 11 Feb. 2022

Beantwortet:

DGM
am 11 Feb. 2022

Community Treasure Hunt

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

Start Hunting!

Translated by