how to adjust the size of the cross
18 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
when I use 'plot' to draw a cross on a pixel in image, I found the cross sign is a bit large size that cover to much pixels, so is there someway to shrink it? Thank you
1 Kommentar
Walter Roberson
am 13 Nov. 2012
Everyone here is asking for MATLAB code. Please change your Tag to be more specific to your issue. See http://www.mathworks.co.uk/matlabcentral/answers/43073-a-guide-to-tags
Akzeptierte Antwort
Sean de Wolski
am 13 Nov. 2012
You could set the line's 'MarkerSize' to be smaller.
h = plot(..)
set(h,'MarkerSize',10);
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Line Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!