2014-03-26 2 views
1

정규 분포를 플로팅하는 좋은 방법입니까? 경우에 따라, I는 1보다 큰Matlab에서 정규 분포 플로팅

% thresh_strain contains a Normally Distributed set of numbers 
[mu_j,sigma_j] = normfit(thresh_strain); 
x=linspace(mu_j-4*sigma_j,mu_j+4*sigma_j,200); 
pdf_x = 1/sqrt(2*pi)/sigma_j*exp(-(x-mu_j).^2/(2*sigma_j^2)); 
plot(x,pdf_x); 

감사

enter image description here

답변

1

PDF 파일의 적분 값이 높을 수있는 시점에서, 1 인 PDF 값 (pdf_x)를 얻을 . 당신의 음모는 핵심입니다.