Creation of colorbar for given points

2 visualizzazioni (ultimi 30 giorni)
Roderick
Roderick il 26 Ago 2024
Risposto: Voss il 26 Ago 2024
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?

Risposta accettata

Voss
Voss il 26 Ago 2024
% 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

Più risposte (0)

Categorie

Scopri di più su Color and Styling in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by