Effacer les filtres
Effacer les filtres

How to sort heatmap columns based on outside data

4 vues (au cours des 30 derniers jours)
Aaron Ouyang
Aaron Ouyang le 21 Mai 2022
Réponse apportée : Voss le 21 Mai 2022
Hi,
I plotted a heatmap as shown below:
h = heatmap(array);
I want to sort my columns based on some outside data, specifically an array called idx shown below. How can I do this?
Thanks.

Réponse acceptée

Voss
Voss le 21 Mai 2022
array = rand(13,28);
idx = [13 5 24 23 17 15 3 12 1 25 26 4 18 10 27 14 21 7 20 19 8 28 11 2 6 22 16 9];
h = heatmap(array(:,idx),'XDisplayLabels',sprintfc('%d',idx));

Plus de réponses (0)

Catégories

En savoir plus sur Data Distribution Plots dans Help Center et File Exchange

Produits


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by