How to draw a number of colors from custom colormap?

조회 수: 6 (최근 30일)
Marcel345614
Marcel345614 2021년 9월 2일
댓글: Marcel345614 2021년 9월 2일
I used the colormapeditor to change a predefined colormap the way I want it. Then I saved this custom colormap to the workspace. It is a 256x3 vector.
How can I now draw a number of colors from this colormap?
Example:
I want 14 different colors for a plot with 14 lines.
In case of predefined colormaps, this would be easy:
cc=jet(14)
figure
hold on
plot(x,y,cc(:,1))
plot(x,y,cc(:,2))
...
How can I do the same thing with my custom colormap?

채택된 답변

Jan
Jan 2021년 9월 2일
편집: Jan 2021년 9월 2일
YourMap = rand(256, 3);
% 14 color which exist in the original map:
Map14 = YourMap(round(linspace(1, 256, 14)), :);
% With interpolation:
Map14i = interp1(1:256, YourMap, linspace(1, 256, 14))
  댓글 수: 1
Marcel345614
Marcel345614 2021년 9월 2일
Thank you very much for your answer! It solves the problem!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Color and Styling에 대해 자세히 알아보기

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by