Creation of colorbar for given points

5 ビュー (過去 30 日間)
Roderick
Roderick 2024 年 8 月 26 日
回答済み: Voss 2024 年 8 月 26 日
Dear all
I am attaching a file with a color transition that I want to use as the color palette for a imagesc plot. How can I do that?

採用された回答

Voss
Voss 2024 年 8 月 26 日
% I don't have your image data, so I make
% a random matrix to use in imagesc()
data = rand(20,20);
% read colormap colors from the text file
cmap = readmatrix('colors.txt');
% create the imagesc plot
figure
imagesc(data)
colormap(cmap)
colorbar

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by