How to draw square plot in matlab?
430 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nilanshu Mahant
el 16 de Mzo. de 2022
Respondida: Kazi
el 29 de Mayo de 2024
I want to draw individual and subplots in square dimenstion. Is there any command which I can use to get a square plot?
0 comentarios
Respuesta aceptada
Sam Chak
el 16 de Mzo. de 2022
Here is the basic to draw a square or any rectangular object. The rectangle function will pick a corner at (2, 3) and then draw a 5-by-5 square.
rectangle('Position',[2 3 5 5])
axis square
axis([0 10 0 10])
Result:
Más respuestas (1)
Ver también
Categorías
Más información sobre Subplots 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!