plotting 2 different sized data into histogram
조회 수: 8 (최근 30일)
이전 댓글 표시
hello,
i have 2 data files, like R1(6400*1) and R2(6500*1). data inside both are varying between 0 to 3 but R2 contains 20 data with value varying between3 to 12.
how while plotting the histogram of both data together, bar of the both R! and R2 are of different width. suppose i have bar of 0.2-0.4 of R1 then i am getting bar of R2 range 0.2-0.35 so next bar of R2(0.35-....) is also over lapping with R1(0.2-0.4) range with is very hard to compare both data.
i tried with setting nbins but due to varing data of both matrix overlapping is still a problem and hard to compare it.
please anyone suggest me the solution to manage both bars of same width.
here is the picture with program line 97,98 and 107,108. where nbins is 1 for every bars.
댓글 수: 2
채택된 답변
Luna
2019년 11월 28일
Try this for your both histograms. Do not use nbins.
widthvalue = 0.1;
histogram(X,'BinWidth',widthvalue)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Histograms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!