How to get 2 heatmaps
이전 댓글 표시
I am trying to get two heatmaps i.e i have 2 different data sets and i want each to have a separate heatmap window. I am using this function Hm = heatmap(abc);
댓글 수: 2
Peng Li
2020년 4월 1일
Your question isn't quite clear. So you plot one heatmap by using your command; you can create another figure obj and plot another heatmap.
Hm = heatmap(abc);
figure; Hm2 = heatmap(abc2);
Is this what you need?
agrim agarwal
2020년 4월 1일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Data Distribution Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!