Ploting a implicit equation using plot
조회 수: 6 (최근 30일)
이전 댓글 표시
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
답변 (1개)
John D'Errico
2015년 10월 8일
편집: John D'Errico
2015년 10월 8일
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
John D'Errico
2015년 10월 8일
편집: John D'Errico
2015년 10월 8일
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.
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Identification에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!