• 大小: 517B
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-05-15
  • 语言: Matlab
  • 标签: 正弦函数  

资源简介

产生正弦波、均匀白噪声、高斯白噪声图形。并分别将 两种噪声叠加在正弦波图形上,绘图

资源截图

代码片段和文件信息

%1.正弦函数图形 及 叠加均匀白噪声的图形
t=0:0.01:10;
f=sin(t);
y1=rand(size(f));
y2=y1+f;
subplot(311);
plot(tf)title(‘正弦‘)grid on; 
subplot(312);
plot(ty1)title(‘均匀白噪声‘)grid on;
subplot(313);
plot(ty2‘g‘)title(‘叠加‘)grid on;

%

评论

共有 条评论