How do I change default plot colors to green and blue for multiple patternCustom polar plots?
Ältere Kommentare anzeigen
When using multiple patternCustom plots, I can't seem to change the default colors to Green and Purple without them getting overwritten. Here is an example of what I have for the figure:
figure;
A = patternCustom( magE_H , theta_H , phi_H, CoordinateSystem="polar", Slice="theta", SliceValue=[100]);
hold on;
B = patternCustom( magE_V , theta_V , phi_V, CoordinateSystem="polar", Slice="theta", SliceValue=[100]);
B.AngleAtTop = 0;
B.TitleTopTextInterpreter = 'tex';
B.TitleTop = '5 GHz \phi = -10\circ'
l = legend(gca); l.delete;
legend(gca, 'H-pol', 'V-pol');
hold off;
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Surface and Mesh Plots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!