how to increase dot size?

2 visualizzazioni (ultimi 30 giorni)
bsd
bsd il 25 Set 2011
Hai,
I have drawn two intersecting lines. The point of intersection of these two lines is a dot. I need to increase this dot size, of the intersection. How could I do this?
BSD
  1 Commento
Harry MacDowel
Harry MacDowel il 25 Set 2011
dot size?? Do you mean the image resolution??

Accedi per commentare.

Risposta accettata

Wayne King
Wayne King il 25 Set 2011
You can always plot a symbol at the point of intersection
x = -10:10;
y = x;
y1 = -x;
plot(x,y,x,y1,'b');
hold on;
h = plot(0,0,'ko','MarkerfaceColor',[0 0 0]);
If you really want to make the size bigger than the default, use the MarkerSize property.
Wayne

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by