不知道矩阵是怎么统计的,但累加图可以画,例子如下,可以参考:
% a1=binornd(1000,0.1,[10,100]) ;
% a2=binornd(1000,0.2,[10,100]) ;
% s=a1+a2 ;
% p1=s-300;
% p2=p1/sqrt(250);
x = -2.9:0.1:2.9;
y = randn(10000,1);
figure(1), hist(y,x)
n_elements = histc(y,x);
c_elements = cumsum(n_elements);
figure(2),bar(x,c_elements);
hist