how to built custom a colormap

1 回表示 (過去 30 日間)
ha ha
ha ha 2019 年 2 月 9 日
コメント済み: madhan ravi 2019 年 2 月 9 日
I want to built "colorRGB" matrix with k-by-3 matrix (k is predefined number by the user)
Let's say: I need 5 colors (k=5; & random color, but NOT include white color)
colorRGB=[0, 0.4470, 0.7410; 0, 0, 1; 0.85, 0.32, 0.09; 0, 0.75, 0.75; 0.25, 0.25, 0.25];.
colorRGB=[0, 0.4470, 0.7410
0, 0, 1
0.85, 0.32, 0.09
0, 0.75, 0.75
0.25, 0.25, 0.25]
How can I do that? In case I want to build 100 random color matrix. How can I do that?
(Plz see picture below for visualization)

採用された回答

Image Analyst
Image Analyst 2019 年 2 月 9 日
Try this:
yourColormap = rand(k, 3); % Colormap with k random colors.
  3 件のコメント
Image Analyst
Image Analyst 2019 年 2 月 9 日
It can be used if you want that colormap. However that is not a random colormap like the poster wanted so that particular colormap would not be used in "ha ha"'s case.
madhan ravi
madhan ravi 2019 年 2 月 9 日
Thank you for clarifying sir Image Analyst.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeColormaps についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by