Color map error when I write "colorMap = Map.black"?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
when I write
colorMap = Map.black;
it shows error
Unable to resolve the name Map.black.
Error in untitled4 (line 14)
colorMap = Map.black;
any suggestions why it's not working?
1 Kommentar
Antworten (1)
Image Analyst
am 7 Feb. 2022
I don't know what Map.black is. Did you create it? What is it? It doesn't make sense to have a color map that is all black.
Try this:
colorMap = turbo(256);
colormap(colorMap);
colorbar;
0 Kommentare
Siehe auch
Kategorien
Mehr zu Colormaps 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!