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

1 次查看(过去 30 天)

采纳的回答

MathWorks Support Team
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.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

产品


版本

R2008b

Community Treasure Hunt

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

Start Hunting!

Translated by