Plot 2 vectors (different size) on same histogram normalized such that both have total area 1
이전 댓글 표시
Hi
ok so i have vector A and vector B
and i want to plot them both in histogram - with normalization probabillity for each,
this is a code i tried: i have [A] vector and [B] (different sizes)
figure(1)
histogram(A,100, 'Normalization','probability')
hold on
histogram(B,100, 'Normalization','probability');
ylabel('Probabillity'); xlabel('V');
But somhow they dont get same area under the histograms plots:

or it seems like this - maybe since one vector is more "dense" (longer) how to fix it so it will look the same area below (to be equal 1 surely)
Best,
Lital
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Histograms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!