一致性噪音matlab程序
时间: 2023-11-09 21:08:14 浏览: 45
以下是一致性噪音的Matlab程序示例:
```matlab
% 生成一致性噪音信号
fs = 1000; % 采样率
t = 0:1/fs:1-1/fs; % 时间向量
f1 = 10; % 基频
f2 = 50; % 谐波频率
x = sin(2*pi*f1*t) + 0.5*sin(2*pi*f2*t); % 原始信号
y = x + 0.2*randn(size(t)); % 添加一致性噪音
% 绘制信号图像
figure;
subplot(2,1,1);
plot(t,x);
title('原始信号');
xlabel('时间 (s)');
ylabel('幅值');
subplot(2,1,2);
plot(t,y);
title('添加一致性噪音后的信号');
xlabel('时间 (s)');
ylabel('幅值');
```
阅读全文