I made a Heat map. I want to remove the x and y axis ticks. How is that possible?
47 ビュー (過去 30 日間)
古いコメントを表示
I tried using set(gca............), but that is for plot. i am stuck at this.
2 件のコメント
Walter Roberson
2017 年 9 月 8 日
Is this the heatmap from the Bioinformations toolbox? https://www.mathworks.com/help/bioinfo/ref/heatmap.html
回答 (3 件)
Walter Roberson
2017 年 9 月 9 日
There are no x and y axis ticks for the new R2017a heatmap object. There is at most the ticks inside the colorbar beside the drawing. Is it the colorbar tick marks that you want to remove?
10 件のコメント
Jesús Bernardino Velázquez Fernández
2023 年 8 月 22 日
編集済み: Walter Roberson
2023 年 8 月 22 日
h=heatmap(x,y,c);
s=struct(h);
s.XAxis.Visible='off';
s.YAxis.Visible='off';
10 件のコメント
Din
2024 年 9 月 10 日
I actually want a Y axis to have fewer number of values than the number of rows of the data. Plz lemme know if there is a way to do this?
Din
2024 年 9 月 10 日
Also, when I save the figure, the original numbering (matching the dimensions of the data) overwrites the alternate numbering. Though, this problem can be solved by taking a screenshot of the figure, instead of saving it.
参考
カテゴリ
Help Center および File Exchange で Red についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!