%此次代码实现功能
1.生成一个单频信号,并绘图
2. 产生信噪比从 -10dB:5dB:10dB 的噪声并且绘图表现出来
clear all
close all
clc
%% 产生声波源信号
f0 = 1.e3; % 单频信号1频率Hz
f1 = 2.e3; % 单频信号1频率Hz
T_pulse = 5.e-2; % 脉冲宽度s
fs = 7 * max(f0,f1);% 采样率hz
n_number = T_pulse * fs;
t = 0: 1/fs :T_pulse;
s0 = cos(2*pi*f0*t);
s1 = 2*sin(2*pi*f1*t);
figure;plot(t,s0,'-k');hold on; plot(t,s1,'-r');
axis([-0.01 1.05*T_pulse -2.01 2.01]); %控制坐标轴的范围
xlabel('时间/s');ylabel('幅度/v');grid on;
%% 产生信噪比从 -10dB:5dB:10dB 的噪声并且绘图表现出来
for snr = -10:5:10
y = awgn(s0,snr,'measured'); %在添加噪声之前测量了x的能量
figure;
plot(t,y);xlim([-0.01 1.05*T_pulse]);
xlabel('时间/s');ylabel('幅度/v');grid on;
end