필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

help with contour plot

조회 수: 1 (최근 30일)
Hanna Sundling
Hanna Sundling 2020년 4월 29일
마감: MATLAB Answer Bot 2021년 8월 20일
Trying to plot.
The equation is:
A tip in polar coordinates:
And my code:
(The picture above is how it is supposed to look9
  댓글 수: 1
Walter Roberson
Walter Roberson 2020년 4월 29일
Note that volunteers are seldom interested in typing in code from pictures of code. Make it easier for the volunteers by providing actual code.

답변 (1개)

Walter Roberson
Walter Roberson 2020년 4월 29일
Your line with == computes whether each element of Z happens to have a particular and exact relationship to X and Y. Once it has done that computation of whether there is a match or not, your code then throws away that computation, having wasted time but otherwise not having done anything useful.
I would suggest to you,
Z2 = X.^2 + Y.^2 + 1;
surf(X, Y, Z2)
  댓글 수: 4
Hanna Sundling
Hanna Sundling 2020년 4월 29일
I do not understand how I sholud change.
I tried writing Z1 = Z2.^2 an then surf(X,Y,Z1)
Walter Roberson
Walter Roberson 2020년 4월 29일
surf() one thing. "hold on". surf() another thing that is mirror in Z.

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by