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

Categories

0 votes
4.2k 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 Reply

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)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...