change width and color of a compass plot
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a compass plot (attached) and I want to cnage the line width, color, and type using code not manually. Any help would be greatly appreciated.
Thanks

0 commentaires
Réponse acceptée
Plus de réponses (1)
Adam Danz
le 11 Avr 2019
Use the handle output from the plotting function.
Example:
h = polarplot(theta,rho);
h.LineWidth = 3;
h.Color = 'r';
0 commentaires
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!