plotting concentric circles using contour
12 ビュー (過去 30 日間)
古いコメントを表示
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)
0 件のコメント
採用された回答
Star Strider
2020 年 10 月 26 日
axis('equal') % Function Expression
or:
axis equal % Command Expression
.
5 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Contour Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!