How can I plot this kind of graph with variable sample bins?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi all, can anyone please give me an idea on how can I plot this type of figure? The colorbar is tagged with the number of intensity. Any sample example code will help me to understand it better. Thank you!!
댓글 수: 0
채택된 답변
Voss
2023년 8월 2일
Maybe it is a histogram2 plot with 'DisplayStyle' 'tile'.
histogram2(randn(1e6,1),randn(1e6,1),'DisplayStyle','tile')
colorbar
colormap(jet())
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Colormaps에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!