Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am unsure about how to do a plot (graph) of an implicit function in MATLAB. Let us say a have a two-variable polynomial P and an implicit function (not solvable explicitly) P(x,y)=0. How do I plot the latter graph in the x-y coordinate system (with a grid)?

I tried to use the contour on z=P(x,y), but it gives me level curves at several levels that MATLAB chooses. I wont just the one level at z=0.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

The entire suit of f___ where ____ is a plotting function is what you want.

For example.

syms x
syms y
fsurf(x^3*y+3*y^2*x^2-5*y^3+x*y+1)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...