creating a rectangle plot
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How can i create this rectangle in matlab?
0 comentarios
Respuestas (3)
Chunru
el 25 de Jul. de 2022
p = [0 2 2 3 3 5 5 0 0;
0 0 1 1 0 0 4 4 0];
plot(p(1,:), p(2,:))
6 comentarios
Chunru
el 26 de Jul. de 2022
You can work out the coordinates (use nan to break up the line).
p = [0 4 nan 6 7 7 0 0 nan 4 6 6 4 4;
0 0 nan 0 0 5 5 0 nan -1 -1 1 1 -1];
plot(p(1,:), p(2,:)); axis off
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!