フィルターのクリア

Rescaling RGB for imagesc

4 ビュー (過去 30 日間)
Zahra Yousefi Darani
Zahra Yousefi Darani 2023 年 7 月 30 日
I have a colormap:
BeautifulColorVector =
0.3735 0 0.7500
0.2490 0 0.5000
0.1245 0 0.2500
0.0700 0.0700 0.0700
I made this to create a 2x2 matrix with beautiful colors by imagesc.
How can I rescale the colour in a way that true colors appear by imagesc function?

採用された回答

Walter Roberson
Walter Roberson 2023 年 7 月 30 日
BeautifulColorVector = [
0.3735 0 0.7500
0.2490 0 0.5000
0.1245 0 0.2500
0.0700 0.0700 0.0700];
img = [1 2; 3 4];
imagesc(img); colormap(BeautifulColorVector)
  1 件のコメント
Zahra Yousefi Darani
Zahra Yousefi Darani 2023 年 7 月 30 日
Amazing!
Thanks a lot Walter!

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by