码迷,mamicode.com
首页 > 编程语言 > 详细

【MATLAB】002【数字信号处理 理论、算法与实现】001_rand

时间:2016-10-14 17:36:57      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:

 

%-----------------------------------------------------------------
% exa011001_rand.m: for example 1.10.1
% to test rand.m and to generate the white noise signal u(n)
% with uniform distribution
% 产生均匀分布的随机白噪信号,并观察数据分布的直方图
%-----------------------------------------------------------------
clear;        %清除内存中可能保存的变量

N=50000;       %u(n)长度 
u=rand(1,N);
u_mean=mean(u)
power_u=var(u)
subplot(211)
plot(u(1:100));grid on;
ylabel(‘u(n)‘)
xlabel(‘n‘)
subplot(212)
hist(u,50);grid on;
ylabel(‘histogram of u(n)‘)

技术分享

 

【MATLAB】002【数字信号处理 理论、算法与实现】001_rand

标签:

原文地址:http://www.cnblogs.com/WHaoL/p/5960933.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!