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

194 views (last 30 days)
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
Walter Roberson
Walter Roberson on 9 Sep 2017
There are no x and y axis ticks for the new R2017a heatmap object.

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 9 Sep 2017
How about using imshow?

More Answers (1)

Sachindra Dhanapala Arachchige
Edited: Image Analyst on 17 Nov 2021
Just add the following to heatmap(.....), and you will not see the values in the heatmap cells.
heatmap(.......'CellLabelColor','none')
  4 Comments

Sign in to comment.

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!