How to plot grid-position like figure in Matlab
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Aftab Ahmed Khan
il 7 Mag 2014
Modificato: Star Strider
il 7 Mag 2014
Hello Everyone, I want to plot/make a structure like this in Matlab. Can anyone help me with this ? P.S. I am very new to Matlab as well. Thank you.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/162308/image.jpeg)
0 Commenti
Risposta accettata
Star Strider
il 7 Mag 2014
This works for the figure on the left:
xy = [1:14]*200;
[X, Y] = meshgrid(xy);
xyo = xy([4 11]);
figure(1)
plot(X, Y, '.k')
hold on
plot(X(:,[4 11]), Y(:,[4 11]), 'ok')
plot(X([4 11],:), Y([4 11],:), 'ok')
plot(X([4 11],[4 11]), Y([4 11],[4 11]), 'sr')
hold off
axis square
This will get you started. Make the necessary changes to get the one on the right. See the documentation for the legend function to get the legend textbox.
2 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Legend in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!