plotting concentric circles using contour
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Randy Chen
el 26 de Oct. de 2020
Comentada: Star Strider
el 27 de Oct. de 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 comentarios
Respuesta aceptada
Star Strider
el 26 de Oct. de 2020
axis('equal') % Function Expression
or:
axis equal % Command Expression
.
5 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Contour Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!