lot two signals (A and B) sampled at 1 kHz for 100 ms, their combination Y = A + B, and Y with added white Gaussian noise (variance = 2), using subplots.
Key MATLAB Steps:
% Parameters
fs = 1000; % Sampling frequency: 1 kHz
T = 0.1; % Total time: 100 ms
t = 0:1/fs:T-1/fs; % Time vector (100 samples)
% Signal A: Example - 50 Hz sine wave
A = sin(2*pi*50*t);
% Signal B: Example - 200 Hz sine wave
B = 0.7 * sin(2*pi*200*t);
% Combined signal Y = A + B
Y = A + B;
% Add white Gaussian noise with variance 2 (standard deviation = sqrt(2) ≈ 1.414)
noise = sqrt(2) * randn(size(t)); % White Gaussian noise with variance 2
Y_noisy = Y + noise;
% Create figure with subplots
figure('Name', 'Signal Plotting', 'NumberTitle', 'off');
% Subplot 1: Original signals A and B
subplot(3,1,1);
plot(t*1000, A, 'b', 'LineWidth', 1.5); hold on;
plot(t*1000, B, 'r--', 'LineWidth', 1.5);
grid on;
title('Signal A (blue) and Signal B (red)');
xlabel('Time (ms)');
ylabel('Amplitude');
legend('A (50 Hz)', 'B (200 Hz)');
hold off;
% Subplot 2: Combined signal Y = A + B (clean)
subplot(3,1,2);
plot(t*1000, Y, 'g', 'LineWidth', 1.5);
grid on;
title('Combined Signal Y = A + B (clean)');
xlabel('Time (ms)');
ylabel('Amplitude');
% Subplot 3: Combined signal Y with white Gaussian noise (variance = 2)
subplot(3,1,3);
plot(t*1000, Y_noisy, 'k', 'LineWidth', 1.2);
grid on;
title('Signal Y with White Gaussian Noise (variance = 2)');
xlabel('Time (ms)');
ylabel('Amplitude');
% Adjust layout
sgtitle('Bidirectional AC-DC Converter Control Signals Simulation Example');
set(gcf, 'Position', [100 100 900 600]);
“I got full marks on my MATLAB assignment! The solution was perfect and delivered well before the deadline. Highly recommended!”
“Quick delivery and excellent communication. The team really understood the problem and provided a great solution. Will use again.”
Explore how MATLAB Solutions has helped clients achieve their academic and research goals through practical, tailored assistance.
One of the most fascinating and sought-after projects for engineering students is autonomous vehicles. One of the main challenges in the development of self-driving cars is path planning, which is the process of determining a safe, collision-free route from start to o
The Battery Management System (BMS) serves as the intelligent brain of an electric vehicle (EV) battery pack. It ensures safety, maximizes performance, extends battery life, and optimizes energy usage in real-world driving conditions. As EVs become mainst