How to add x and y variables to individual values after creating a heatmap.

i want to add the names of values corresponding to the x values on the heat map. Where -0.5 is want ti put a label that says differentiation score, for -0.4 i want to add another name corresponding and so on for all the others. Please help! I know that you can change tthe title of the y and x axis but i dont know a way in which i can give those numbers i mentioned their corresponding name.

 採用された回答

Jim Riggs
Jim Riggs 2022 年 10 月 28 日
You can modify the axis properties after creating the plot:
ax = gca; % get the curent axis handle
ax.XTickLabel = {'Jan','Feb','Mar','Apr'} % specify labels for the x-axis tickmarks
Check out the documentation for axis properties here for more information.

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeData Distribution Plots についてさらに検索

質問済み:

2022 年 10 月 28 日

回答済み:

2022 年 10 月 28 日

Community Treasure Hunt

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

Start Hunting!

Translated by