How can i increase the size of * or star in this case ?
16 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
sufian ahmed
le 10 Juil 2017
Commenté : Walter Roberson
le 10 Juil 2017
plot(P(1),P(2),'*r');
i want to increase the size of star(*). how can i ?
0 commentaires
Réponse acceptée
Geoff Hayes
le 10 Juil 2017
sufian - just increase the MarkerSize as
plot(P(1), P(2), 'r*', 'MarkerSize', 20)
or replace 20 by whatever value makes sense for your plot.
2 commentaires
Walter Roberson
le 10 Juil 2017
Yes, you can use any of the valid markers; https://www.mathworks.com/help/matlab/creating_plots/create-line-plot-with-markers.html#bvcbmlz-1
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Line Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!