필터 지우기
필터 지우기

Histogram and Gaussian curve showing Mean and 1-sigma

조회 수: 4 (최근 30일)
Kash022
Kash022 2017년 7월 19일
답변: supernoob 2018년 4월 13일
Hi All,
I have a histogram over which I want to plot a gaussian curve and show the mean and 1-sigma deviation. I have tried using the example code from https://nl.mathworks.com/help/matlab/ref/histogram.html?s_tid=doc_ta but the problem is it replaces my histogram and only displays the gaussian. I want both of them as shown in the above example and also two lines which could show the mean and 1-sigma. This is the below code I am using. Thanks!
Ids_00 = squeeze(CMOS_00(1,max_SNR_pos,1:100));
figure(); h1=histogram(Ids_00,10);
mu = mean(Ids_00);
sigma = std(Ids_00);
figure(1); hold on;
dId_LSB = 5*pico;
y = min(xlim):dId_LSB:max(xlim);
f = exp(-(y-mu).^2./(2*sigma^2))./(sigma*sqrt(2*pi));
plot(y,f,'LineWidth',1.5)

답변 (1개)

supernoob
supernoob 2018년 4월 13일
Hi there, it looks like you are plotting on two separate figures. Try starting with something like: figure(100); hold on ---rest of your code goes here---

카테고리

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