setting axis ticks on heatmap
65 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
giacomo labbri
le 22 Jan 2021
Modifié(e) : Adam Danz
le 22 Jan 2021
Hi,
I am using the heatmap function to plot the values of a matrix with values between 1 and 0
So I am using
A=[1,0.5;0.4,0.2]
heatmap(A)
I would like to add the axis ticks (a time on the x and a height on the y). Any advice?
I tried to use
heatmap(xvalues,yvaluesmì,A)
but that does not work as I have too many values and they are unredable.
0 commentaires
Réponse acceptée
Adam Danz
le 22 Jan 2021
If you want to change the tick labels,
h = heatmap(__);
h.XDisplayLabels = % string array or cell array of character vectors
h.YDisplayLabels = % string array or cell array of character vectors
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!