How can a plot similar to this one can be done? with squares and dotted lines on each horizontal and vertical direction?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
juan sanchez
el 6 de Oct. de 2021
Comentada: juan sanchez
el 5 de Nov. de 2021
How can a plot similar to this one can be done? with squares and dotted lines on each horizontal and vertical direction?
0 comentarios
Respuesta aceptada
DGM
el 6 de Oct. de 2021
Editada: DGM
el 6 de Oct. de 2021
If you know where the vertices are, it should be fairly simple. Consider the very simplified example.
x = [0 10 10 0 0];
y = [0 0 10 10 0];
plot(x,y,'k'); hold on;
x = [0 2 2 4 4];
y = [6 6 8 8 10];
plot(x,y,'k:')
axis equal
xlim([-5 15])
ylim([-5 15])
Whether you explicitly define your vertices as literal vectors or whether you derive them from some CAD file shouldn't make much difference.
3 comentarios
Image Analyst
el 7 de Oct. de 2021
Juan, if it solved your question, can you click the "Accept this answer" link to give @DGM the reputation points he deserves? Thanks in advance. 🙂
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!