Matrix visualization as an image
조회 수: 3 (최근 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!