Ploting a implicit equation using plot
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
John D'Errico
il 8 Ott 2015
Modificato: John D'Errico
il 8 Ott 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 Commenti
John D'Errico
il 8 Ott 2015
Modificato: John D'Errico
il 8 Ott 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.
Vedere anche
Categorie
Scopri di più su Data Type Identification in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!