Matrix visualization as an image
Mostrar comentarios más antiguos
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 comentario
Henric Rydén
el 21 de Mayo de 2014
You have already asked this exact question here
Respuestas (1)
Image Analyst
el 21 de Mayo de 2014
Try applying some kind of a colormap
colormap(jet(256));
colormap(gray(256));
colormap(autumn(256));
colormap(lines(256));
Categorías
Más información sobre Orange en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!