How do I create lines with different colors greater than the default number of colors in MATLAB 7.7 (R2008b)?

1 visualizzazione (ultimi 30 giorni)

Risposta accettata

MathWorks Support Team
MathWorks Support Team il 16 Giu 2010
The figure can be created with several colors greater than the default number of colors by resetting the property "DefaultAxesColorOrder" of the figure.
As an example, this can be done with the following code snippet:
h = colormap(lines);
close(gcf)
set(0,'DefaultAxesColorOrder',h);
plot(rand(20,20))
Alternatively, you could also define your own colormaps by specifying RGB values for the variable "h" in the above example.

Più risposte (0)

Categorie

Scopri di più su Interactive Control and Callbacks in Help Center e File Exchange

Prodotti


Release

R2008b

Community Treasure Hunt

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

Start Hunting!

Translated by