Average in interval histogram
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello, I want calculate mean of each interval . Suppose interval is equal.
댓글 수: 1
per isakson
2016년 7월 22일
Try
X = rand(100,1);
[N,edges,bin] = histcounts( X );
mean_of_forth_bin = mean( X(bin==4) )
outputs
mean_of_forth_bin =
0.7103
답변 (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!