필터 지우기
필터 지우기

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

조회 수: 1 (최근 30일)
I would like to create a figure with several lines having different colors greater than the default number of colors.

채택된 답변

MathWorks Support Team
MathWorks Support Team 2010년 6월 16일
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