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);

猜你喜欢

转载自blog.csdn.net/weixin_44991673/article/details/109814321