Matrix visualization as an image
1 次查看(过去 30 天)
显示 更早的评论
To know my data better i wanted to visualize my data matrix as an image. I used imagesc to do that.
code: imagesc(dataStruct.data)
But most of the image was in the same blue shade. Can someone suggest me a way to make this visualization better. With more accurate colors for the values. I am attaching the plot i got here. Thank You
回答(1 个)
Image Analyst
2014-5-21
Try applying some kind of a colormap
colormap(jet(256));
colormap(gray(256));
colormap(autumn(256));
colormap(lines(256));
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Blue 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!