Creation of colorbar for given points
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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?
0 Kommentare
Akzeptierte Antwort
Voss
am 26 Aug. 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
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Colorbar finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!