Create a series of sinusoids

Assignment Help Computer Engineering
Reference no: EM132106190

Procedure:

Download the Spectrum Analyzer function Spectrum Analyzer.m from the website. Instructions for using Spectrum Analyzer

Spectrum Analyzer(Array You Wish To Analyze,Sampling Frequency) Output is a plot in dB showing the output FFT.

Create a series of sinusoids.

Create a 10 second time axis, sampling every 0.0001 seconds (Fs=10000 Hz).

Create and plot about 10 cycles of y= cos (2*p*f0*t) where t is your time axis and

f0 is 200 Hz.

Now try to visualize it in the spectral domain by using

Spectrum Analyzer(y,10000). Note that there are 2 lines at 200 Hz and -

200 Hz

Listen to the sound by using the soundsc(y,10000) function

Create another sinusoid at the second harmonic of the sinusoid (400Hz). Plot it on the same graph as the first, and play it using your sound card.

Visualize it using the Spectrum Analyzer Function. Now you will see a pair of lines at 400 and -400 Hz.

Plot on the same graph as before

Createa square wave from the sinusoids,after each step plot a small section,and run the spectrum Analyzer function.

Add first harmonic term you crated +(sin(k*p/2)/k)*cos(k*2*p* f0*t) for k=3

now do it for k=1,3,5 (using the scaling coefficient on each term)

now do it for k=1,3,5,7 (etc)

now do it for k=1,3,5,7,9,11,13

Use a for loop with a pause to do 21 harmonics (only odd).

Comment on the squareness of the output as a function of the number of harmonics that you use. Play it on your sound card using the soundsc(y,Fs) and listen to the difference.

C. RemovealltheHarmonicsusingalowpassfilter.

Design a filter to remove all harmonics from the square wave with the exception of the first. Let Fs=10000 Hz, Pass band = 220 Hz, stop band =300 Hz

Export the coefficients to workspace (Num) Run y=filter(Num,1,SquareWave) to remove harmonics. Plot and listen on your sound card. Run through the spectrum analyzer and compare to part A.

D. Look at a song in the time and frequency domain. Type "Load Handel". This will create an array (y,Fs) where y has the music and Fs is the sampling frequency 8192 Hz.

play the song using your sound card

look at the song in the frequency domain using spectrumanalyzer

look at the first 10000 points in the time domain.

Speed the music, play using sound card at Fs=12000

Design a low pass filter to pass frequencies from 0 to 2000 Hz.

Follow the procedure from before and filter your waveform, plot the spectrum and listen to the output. It does not sound so good anymore.

SpectrumAnalyzer is below:

function SpectrumAnalyzer(InputArray,Fs)

Yaxis=abs(fftshift(fft(InputArray)));

Yaxis=Yaxis.*Yaxis;

v=size(Yaxis);

if v(1)==1

V=size(Yaxis,2);

Xaxis=-Fs/2+Fs/V:Fs/V:(Fs/2);

else

V=v(1);

Xaxis=-Fs/2+Fs/V:Fs/V:(Fs/2);

Xaxis=Xaxis.';

end

Yaxis=10*log10(Yaxis*4/(V.*V));

figure

plot(Xaxis,Yaxis)

xlabel('Frequency (Hz)')

ylabel('Power')

Reference no: EM132106190

Questions Cloud

Determining the death and afterlife presence : It could be argued that to understand both death and afterlife presence, one must first be mindful of physical presence in the world.
How does this abstraction help you deal with the complexity : What procedures in your daily routine, say getting up and leaving for work, can you think of in terms of a function?
Calculate the surface area of a cylinder using pseudocode : Write pseudocode for a program that calculates the surface area of a cylinder.
Write a function geometric that takes a list of integers : Write a function geometric ()that takes a list of integers as inputs and returns true if the integers in the list form a geometric sequence.
Create a series of sinusoids : Create a series of sinusoids. Create a 10 second time axis, sampling every 0.0001 seconds (Fs=10000 Hz).
How does this abstraction help you deal with the complexity : What procedures in your daily routine, say getting up and leaving for work, can you think of in terms of a function?
Write a separate matlab m-file : Write a separate MATLAB m-file. The name of each m-file must be exactly as specified in the corresponding problem statement.
What is the present value of a single cash flow : What is the present value of a single cash flow of $25,000received at the end of 10years if we assume a discount rate of 5% annually
Write the recurrence equation and initial conditions : Write the recurrence equation and initial conditions that expresses the execution time cost for the sift function in the above algorithm.

Reviews

Write a Review

Computer Engineering Questions & Answers

  Mathematics in computing

Binary search tree, and postorder and preorder traversal Determine the shortest path in Graph

  Ict governance

ICT is defined as the term of Information and communication technologies, it is diverse set of technical tools and resources used by the government agencies to communicate and produce, circulate, store, and manage all information.

  Implementation of memory management

Assignment covers the following eight topics and explore the implementation of memory management, processes and threads.

  Realize business and organizational data storage

Realize business and organizational data storage and fast access times are much more important than they have ever been. Compare and contrast magnetic tapes, magnetic disks, optical discs

  What is the protocol overhead

What are the advantages of using a compiled language over an interpreted one? Under what circumstances would you select to use an interpreted language?

  Implementation of memory management

Paper describes about memory management. How memory is used in executing programs and its critical support for applications.

  Define open and closed loop control systems

Define open and closed loop cotrol systems.Explain difference between time varying and time invariant control system wth suitable example.

  Prepare a proposal to deploy windows server

Prepare a proposal to deploy Windows Server onto an existing network based on the provided scenario.

  Security policy document project

Analyze security requirements and develop a security policy

  Write a procedure that produces independent stack objects

Write a procedure (make-stack) that produces independent stack objects, using a message-passing style, e.g.

  Define a suitable functional unit

Define a suitable functional unit for a comparative study between two different types of paint.

  Calculate yield to maturity and bond prices

Calculate yield to maturity (YTM) and bond prices

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd