Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.1k views
in Technique[技术] by (71.8m points)

Plotting graph of an implicit function in MATLAB

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...