Matrix visualization as an image

3 ビュー (過去 30 日間)
Yuvashree Mani Urmila
Yuvashree Mani Urmila 2014 年 5 月 21 日
コメント済み: Henric Rydén 2014 年 5 月 21 日
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
Image Analyst 2014 年 5 月 21 日
Try applying some kind of a colormap
colormap(jet(256));
colormap(gray(256));
colormap(autumn(256));
colormap(lines(256));

カテゴリ

Help Center および File ExchangeBlue についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by