本文共 231 字,大约阅读时间需要 1 分钟。
clear; u=randn(1,50000); u=u*sqrt(0.1); power_u=var(u); subplot(211) plot(u(1:200)); grid on xlabel('n') ylabel('x(n)') subplot(212) hist(u,50); grid on ylabel('histogram of u(n)'); 转载于:https://my.oschina.net/annieduoduo/blog/71433