天天看点

MATLAB如何生成归一化直方图以及打印概率密度图像

% To generate N realizations  of a zero-mean unit-variable
% Gauss
N=100;
X1=randn(N,1);
[countsX_g,centersX_g]=hist(X1,20);
           

继续阅读