How do I remove the printed data on the heat map?

For a smaller matrix, the data seems to be present on the heatmap output. Also, I tried set(gca....) and "axis off" to remove the tick labels in the map, but that did not work.

3 Comments

We are still waiting for you to answer the question:
Is this the heatmap from the Bioinformations toolbox? https://www.mathworks.com/help/bioinfo/ref/heatmap.html
Or is it the new (R2017a) heatmap() that is for table objects?
It is the the new (R2017a) heatmap().
There are no x and y axis ticks for the new R2017a heatmap object.

Sign in to comment.

 Accepted Answer

More Answers (1)

Just add the following to heatmap(.....), and you will not see the values in the heatmap cells.
heatmap(.......'CellLabelColor','none')

Categories

Community Treasure Hunt

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

Start Hunting!