change width and color of a compass plot
16 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ismaeel
am 11 Apr. 2019
Bearbeitet: Adam Danz
am 11 Apr. 2019
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 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Adam Danz
am 11 Apr. 2019
Use the handle output from the plotting function.
Example:
h = polarplot(theta,rho);
h.LineWidth = 3;
h.Color = 'r';
0 Kommentare
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!