Effacer les filtres
Effacer les filtres

How to make points larger on plot

260 vues (au cours des 30 derniers jours)
Dan
Dan le 17 Mai 2013
Commenté : Image Analyst le 10 Fév 2014
I am doing some plotting, however the points on the plot are far far to small to clearly see colors (data is color coded).
How can I increase the point size? After Plot is made is good too (like a properties setting)
This seems simple, however I just can't seem to figure it out.
Thanks!

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 17 Mai 2013
Modifié(e) : Azzi Abdelmalek le 17 Mai 2013
plot(x,y,'linewidth',8)
%or
h=plot(x,y)
set(h,'linewidth',4)
  1 commentaire
Dan
Dan le 17 Mai 2013
Thanks so Much!

Connectez-vous pour commenter.

Plus de réponses (1)

Image Analyst
Image Analyst le 17 Mai 2013
"Points" is not really a specific, descriptive term - it's somewhat ambiguous, which I guess is why Azzi gave a different answer than I would have given. 'Linewidth' affects the line size, which is the thickness of the line between the data points, and the line that makes up the lines that comprise of the marker. If you want to make the markers themselves bigger, use
plot(x,y,'MarkerSize', 20); % OR whatever size you want the data points.
  2 commentaires
ZhG
ZhG le 10 Fév 2014
plot(25, 23, 'linewidth', 15,'Color', [205 100 100]/255)
If I want to use RGB values, how can it work?
Image Analyst
Image Analyst le 10 Fév 2014
I'm not sure what you mean. You are using RGB values of 205, 100, 100.
Start a new discussion of your own and explain it better, perhaps with a screenshot attached.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by