Ploting a implicit equation using plot
6 views (last 30 days)
Show older comments
Basically, I want to plot the equation:
x^2+y^2=1+4.5sin^2(xy)
Normally I would use ezplot, but I was explicitly (not implicitly) told to use the plot command. How would I go about doing this?
0 Comments
Answers (1)
John D'Errico
on 8 Oct 2015
Edited: John D'Errico
on 8 Oct 2015
If you cannot use ezplot (must use plot), then you just pick a range of values for x, then solve for y at each x. Plot the results. WTP?
help fzero
Of course, if you were feeling creative, and chose NOT to follow your directions, then you could just use contour. Generate points for the function
f(x,y) = x^2+y^2 - 1 - 4.5sin^2(xy)
then plot the zero contour.
help meshgrid
help contour
7 Comments
John D'Errico
on 8 Oct 2015
Edited: John D'Errico
on 8 Oct 2015
For this specific case, possibly. However, the sin(x*y) would still be a bit messy. Then we would have
r^2 - 1 - 4.5*sin(r^2*sin(theta)*cos(theta)) = 0
So, one might choose to play with this more, but it is not even obvious that for any given value of theta, there is a unique r. In fact, ezplot suggests that for some values of theta, this might be multi-valued, with multiple values for r. (That would require some more play.)
Regardless, for the completely general case such a substitution will be of no value. And so often, when someone gives a function they claim to want to plot, the true function they actually want to plot is so much more messy. This appear to be homework, so probably not the case.
In the end, ezplot is the simple solution, in one line. meshgrid and contour, only slightly more work, doable in two lines.
See Also
Categories
Find more on Data Type Identification in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!