logo

300596 Advanced Signal Processing Project Report 2022

   

Added on  2022-10-01

15 Pages1763 Words29 Views
300596 Advanced Signal Processing
Project
TONE DETECTION

PROJECT REPORT
AIM:
The aim of the project is to implement the digital system for signal frequency estimation in noisy
environment, so the project can be determined as tome detection. The detect frequencies is being
shown by using the MATLAB software in this project.
SOFTWARE USED:
MATLAB 2019b.
WORKING SIMULATION:
TASK: A
(i) MATLAB programming:
Power spectrum Computation:
Fs = 10000;
t = (0:1/Fs:0.20)';
x = cos(2*pi*t*5000)+0.1*randn(size(t));
xTable = timetable(seconds(t),x);
[pxx,f] = pspectrum(xTable);
plot(f,pow2db(pxx))
grid on
xlabel('Frequency (Hz)')
ylabel('Power Spectrum (dB)')
title('Default Frequency Resolution')

pspectrum(xTable,'FrequencyResolution',25)

Two sided spectra:
fs = 10000;
t = 0:1/fs:1-1/fs;
x1 = chirp(t,0,t(end),5000,'quadratic',0,'convex') + ...
randn(size(t))/100;
x2 = exp(2j*pi*100*cos(2*pi*2*t)) + randn(size(t))/100;
fs = 10000;
t = 0:1/fs:1-1/fs;
x1 = chirp(t,0,t(end),5000,'quadratic',0,'convex') + ...
randn(size(t))/100;
x2 = exp(2j*pi*100*cos(2*pi*2*t)) + randn(size(t))/100;
[p,f,t] = pspectrum(x2,fs,'spectrogram');
waterfall(f,t,p');
xlabel('Frequency (Hz)')
ylabel('Time (seconds)')
wtf = gca;
wtf.XDir = 'reverse';
view([30 45])

End of preview

Want to access all the pages? Upload your documents or become a member.

Related Documents
Synthesis of Sinusoidal Signals-MUS Signal Processing Lab 04
|12
|2092
|491

Schematic diagram of Phase locked loop
|4
|724
|57

Designing a High Pass Elliptic Filter for Desklib
|16
|1796
|386

MATLAB and VHDL
|10
|1010
|50

Assignment on Mathematical Methods and Statistical Techniques
|22
|2019
|16