clear,clc;
N=0:1000;
fs=1000;
t=N./fs; 
y=3*sin(2*pi*t);
x=wgn(1,1001,2);
i=y+x;
% i=awgn(y,2);
subplot(3,1,1),plot(x);
subplot(3,1,2),plot(y);
subplot(3,1,3),plot(i);

高斯白噪声matlab实现

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-30
  • 2021-12-25
  • 2021-09-07
  • 2022-12-23
猜你喜欢
  • 2021-08-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-03
  • 2022-01-25
相关资源
相似解决方案