MATLAB 如何给信号添加白噪声

如何使用MATLAB给信号添加白噪声

一种在所有频率上具有平坦功率谱密度(PSD)的噪声信号被称为 白高斯噪声 或者 白噪声 。在本教程中,我将解释如何使用MATLAB给信号添加白高斯噪声。但在此之前,让我们简要了解一下白高斯噪声。

什么是白高斯噪声

一种在指定频率范围内所有频率上具有相等能量的噪声信号被称为 白高斯噪声 。因此,白高斯噪声在所有频率上都有平坦的功率谱密度(PSD)。

对于白高斯噪声,术语白表明噪声信号具有与光学中的白光相同的特性,即包含所有可见颜色,并且比例相等。 而高斯噪声表示噪声信号的幅度遵循高斯分布。其中高斯分布具有钟形曲线。

白高斯噪声在信号处理中用于分析和模拟可能发生在实际系统中的真实随机干扰。

现在,让我们讨论如何使用MATLAB给信号添加白高斯噪声。

给信号添加白高斯噪声

在MATLAB中,有一个内置函数’awgn’用于给信号添加白高斯噪声。下面解释了按步骤给信号添加白高斯噪声的过程:

第一步 - 根据输入信号的持续时间指定一个时间向量。该向量将用于生成输入信号,并作为图形的x轴。

第二步 - 使用时间向量生成所需波形和参数的输入信号。

第三步 - 计算信号功率。

第四步 - 设置信噪比(SNR)。

第五步 - 使用’awgn’函数将白高斯噪声添加到信号中。

第六步 - 绘制结果信号。

现在,让我们通过实例帮助理解这些步骤。

如前所述,我们有一个内置的MATLAB函数’awgn’用于给信号添加白高斯噪声。但是,此函数可以根据噪声水平、信号功率等参数具有各种语法格式。

‘awgn’函数的常用语法格式如下所示:

  • Y = awgn(X, snr)

  • Y = awgn(X, snr, signalpower)

  • Y = awgn(X, snr, signalpower, randobject)

  • Y = awgn(X, snr, signalpower, seed)

  • Y = awgn(___, powertype)

让我们详细讨论每个语法格式,以及附带的示例程序。

按照指定的信噪比将白噪声添加到信号中

为了根据指定的信噪比(Signal-to-Noise Ratio)向信号中增加白噪声,使用’awgn’函数的以下语法:

Y = awgn(X, snr);

在这里,X是输入信号,snr是信噪比,Y是带噪声的信号。

示例

在这里,X是输入信号,snr是信噪比,Y是带噪声的信号。

% MATLAB program to add white gaussian noise to signal based on SNR
% Create a sample sinusoidal signal
t = 0:0.005:2;  % Time vector
X = sin(2*pi*5*t);  % Input signal 

% Set SNR in dB
snr = 15;

% Add white gaussian noise to signal
Y = awgn(X, snr);

% Plot the original signal and the signal with noise
subplot(2, 1, 2);
plot(t, X, t, Y);
legend('Original Signal', 'Noisy Signal');
title('Input Signal with Noise');

结果

如何使用MATLAB给信号添加白噪声?

将指定的信号功率和信噪比添加到信号中的白噪声

使用’awgn’函数的以下语法可将白噪声添加到具有指定信噪比和信号功率的信号中:

Y = awgn(X, snr, signalpower);

示例

让我们看看如何实现语法的代码:

% MATLAB program to add white gaussian noise to signal with specified SNR and signal power
% Generate a sample input signal
t = 0:0.005:2;  % Time vector
X = sin(2*pi*5*t);  % Input signal 

% Compute the signal power
signal_power = sum(X.^2) / length(X);

% Set an SNR
snr = 15;

% Add white gaussian noise to signal
Y = awgn(X, snr, signal_power);

% Plot the original signal and the signal with noise
subplot(2, 1, 2);
plot(t, X, t, Y);
legend('Input Signal', 'Noisy Signal');
title('Input Signal with Noise');

输出

如何使用MATLAB给信号添加白噪声?

给信号加入具有指定随机数生成器对象的白高斯噪声

使用 ‘awgn’ 函数的以下语法,可以给信号加入具有指定随机数生成器对象的白高斯噪声,用于生成正态分布的随机噪声:

Y = awgn(X, snr, signal_power, rand_object);

示例

考虑以下MATLAB程序,以理解此语法的代码插入:

% MATLAB program to add white gaussian noise to signal with specified random object
% Generate a sample input signal
t = 0:0.005:2;  % Time vector
X = sin(2*pi*5*t);  % Input signal 

% Compute the signal power
signal_power = sum(X.^2) / length(X);

% Set an SNR in dB
snr = 15;

% Create a random number generator object
rand_obj = RandStream('mt19937ar', 'Seed', 50);

% Add white gaussian noise to signal using the random object
Y = awgn(X, snr, signal_power, rand_obj);

% Plot the original signal and the signal with noise
subplot(2, 1, 2);
plot(t, X, t, Y);
legend('Input Signal', 'Noisy Signal');
title('Input Signal with Noise');

输出

如何使用MATLAB给信号添加白噪声?

给信号添加具有指定随机种子的白噪声

在MATLAB中,我们可以使用’awgn’函数的以下语法,为了可重复性而给信号添加具有指定随机种子的白高斯噪声:

Y = awgn(X, snr, signal_power, seed);

示例

让我们看看如何在MATLAB程序中使用这个函数。

% MATLAB program to add white gaussian noise to signal with specified random seed
% Generate a sample input signal
t = 0:0.005:2;  % Time vector
X = sin(2*pi*5*t);  % Input signal 

% Compute the signal power
signal_power = sum(X.^2) / length(X);

% Set the SNR in dB
snr = 15;

% Set a random seed for reproducibility
seed = 120;

% Add white gaussian noise to signal using the random seed
Y = awgn(X, snr, signal_power, seed);

% Plot the original signal and the signal with noise
subplot(2, 1, 2);
plot(t, X, t, Y);
legend('Input Signal', 'Noisy Signal');
title('Input Signal with Noise');

输出

如何使用MATLAB给信号添加白噪声?

向指定功率类型的信号添加白高斯噪声

使用’awgn’函数的以下语法可以向指定功率类型的信号中添加白高斯噪声:

Y = awgn(X, snr, signal_power, power_type);

在这里,参数’power_type’的值可以是’measured’,’actual’或’db’。默认值为’measured’。

示例

让我们看一个例子来理解这个语法的代码实现。

% MATLAB program to add white gaussian noise to signal with specified power type
% Generate a sample input signal
t = 0:0.005:2;  % Time vector
X = sin(2*pi*5*t);  % Input signal 

% Compute the signal power
signal_power = sum(X.^2) / length(X);

% Set the SNR in dB
snr = 15;

% Set the power type
power_type = 'measured';

% Add white gaussian noise to signal using the random seed
Y = awgn(X, snr, signal_power, power_type);

% Plot the original signal and the signal with noise
subplot(2, 1, 2);
plot(t, X, t, Y);
legend('Input Signal', 'Noisy Signal');
title('Input Signal with Noise');

输出

如何使用MATLAB给信号添加白噪声?

总结

这就是关于使用MATLAB向信号添加白高斯噪声的全部内容。在MATLAB中,使用内置函数’awgn’将白高斯噪声添加到信号中。在本教程中,我通过示例程序解释了’awgn’函数的所有可能的语法格式。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程