plotting concentric circles using contour
12 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Randy Chen
am 26 Okt. 2020
Kommentiert: Star Strider
am 27 Okt. 2020
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 Kommentare
Akzeptierte Antwort
Star Strider
am 26 Okt. 2020
axis('equal') % Function Expression
or:
axis equal % Command Expression
.
5 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Contour Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!