plotting concentric circles using contour

조회 수: 35 (최근 30일)
Randy Chen
Randy Chen 2020년 10월 26일
댓글: Star Strider 2020년 10월 27일
I'm trying to plot a few concentric circles with the following codes, but what I get is an ellipse, i don't know why:
[x,y] = meshgrid(-3:0.1:3,-3:0.1:3);
z = x.^2+y.^2;
contour(x,y,z)

채택된 답변

Star Strider
Star Strider 2020년 10월 26일
Use the axis function, specifically either:
axis('equal') % Function Expression
or:
axis equal % Command Expression
.
  댓글 수: 5
Randy Chen
Randy Chen 2020년 10월 27일
thanks a lot!
Star Strider
Star Strider 2020년 10월 27일
As always, my pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by