Color map error when I write "colorMap = Map.black"?
2 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Image Analyst
2022-2-7
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Colormaps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!