필터 지우기
필터 지우기

Centering a histogram around the median

조회 수: 13 (최근 30일)
A
A 2011년 9월 29일
Hey, I have data that I am plotting a histogram with, and I want to center my histogram on the mean, with six bins (i.e 3 on each side). I need that each bin is the width of the standard deviation. Thanks in advance for any replies. Cheers, Amina

답변 (1개)

Honglei Chen
Honglei Chen 2011년 9월 29일
Hi Amina,
You can specify the bin location in hist function, for example
x = rand(1024,1);
sigmax = std(x);
mx = mean(x);
binloc = (-2.5:2.5)*sigmax+mx;
hist(x,binloc)
More details can be found at
doc hist
HTH

카테고리

Help CenterFile Exchange에서 Histograms에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by