How to sort heatmap columns based on outside data
1 回表示 (過去 30 日間)
古いコメントを表示
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.
0 件のコメント
採用された回答
Voss
2022 年 5 月 21 日
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));
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Distribution Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
