Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

% system is limited by it's half of a sampling rate. fmax = ; % max frequency in the system simulation nFFT = 2 5

% system is limited by it's half of a sampling rate.
fmax = ; % max frequency in the system simulation
nFFT =2500; % number of points in frequency domain
Xf = fftshift(fft(,nFFT)); % modulating signal spectrum
magXf = abs(Xf); % absolute value of modulating spectrum
freq =-fmax:(Fs/nFFT):fmax-(fmax/nFFT); % double sided freq vector
Cf = fftshift(fft(, nFFT)); % carrier signal spectrum
magCf = abs(Cf); % absolute value of carrier signal spectrum
Yf = fftshift(fft(, nFFT)); % modulated output signal spectrum
magYf = abs(Yf); % absolute value of modulated output signal spectrum
figure;
plot(freq,20*log10(magXf)); hold on;grid on;
title('Modulating signal magnitude spectrum');
xlabel('frequency'); ylabel('amplitude');
plot(freq,20*log10(magCf));
title('Carrier signal magnitude spectrum');
xlabel('frequency'); ylabel('amplitude');
plot(freq,20*log10(magYf));
title('Modulated output magnitude spectrum');
xlabel('frequency'); ylabel('amplitude');

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Accounting And Auditing Research And Databases Practitioner's Desk Reference

Authors: Thomas R. Weirich, Natalie Tatiana Churyk, Thomas C. Pearson

1st Edition

1118334426, 978-1118334423

More Books

Students also viewed these Databases questions