Heat Map
5 views (last 30 days)
Show older comments
I have a dataset, having different types of group in rows. I want to draw heat map of this dataset with some gap for each group in the heatmap. How I will do that. Plz help me. Thanks for your valuable suggestion. I am using Guide.
0 Comments
Answers (1)
Image Analyst
on 15 Apr 2012
Showing us some sample data would help. Perhaps you could use contour() or perhaps just display it as an image via image() or imshow() and, optionally, use a colormap.
axes(handles.axesImage); % Switch active axes to axesImage.
imshow(mat2gray(yourData));
colormap(jet(256));
colorbar;
See Also
Categories
Find more on Data Distribution Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!