Can I create a colorbar that is not associated to a figure?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Samantha Clayton
am 11 Jun. 2018
Beantwortet: Image Analyst
am 11 Jun. 2018
Can I create a colorbar that is not associated to a figure? I have created a series of heat maps that I want a colorbar with, but it is not possible to change any properties of the colorbar from a heatmap. Thus, I want to know if it is possible to create one just from my limits that is not attached to the heatmap so I can adjust it.
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 11 Jun. 2018
Samantha, try this:
rows = 512; % Whatever size you want.
columns = 50;
cmap = hsv(rows);
colorImage = ind2rgb([1:rows]', cmap);
colorImage = imresize(colorImage, [rows, columns], 'nearest');
imshow(colorImage);
axis on;
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Colormaps finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!