Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

please use MATLAB codes to answer this question and please explain each step For this assignment you will create an audio effects and analysis tool.

image text in transcribed

image text in transcribed

please use MATLAB codes to answer this question and please explain each step

For this assignment you will create an audio effects and analysis tool. Your program will need to have a Graphical User Interface (GUI) menu with the following functionality: Choose a File. This menu item will allow the user to enter exact name of audio file to be read into the program. The file has to be in wav format. The audio vector and sampling frequency (Fs) from this module will be used for the remaining features of this program. 1. 2. Play the original audio vector. Echo effect. Create a function that will add an echo effect to the audio signal. The function should take in the sound vector, sampling frequency, delay in seconds, and echo amplitude. The function should return a vector containing the echoed sound. 3. sounVecEcho soundEcho (soundVec, Fs, delay, echoGain) Steps you should follow when designing your function: a. Take in the audio vector and sampling frequency, delay and echo gain. Convert the delay in seconds to number of samples delaySamples Fs delay Figure out a way to add a delayed version of the signal vector to the original sound vector. delaySamples tells you how many elements the offset needs to be. echoGain sets the amplitude of the echo signal (1-100% amplitude, 0.5-50% amplitude, 1.5-150% amplitude, etc) to be added. c. d. Play the new version of your sound vector. Compress. Create a function that takes in the sound vector and compression ratio. The function should compress the file by removing vector elements based on the compression ratio. (i.e. if you the compression ratio is 3, keep only every third element.) The function should return the compressed vector. 4. compSoundVec - compress (soundVec, compression ratio) S. Frequency spectrum. While it is perhaps most intuitive ta consider signale in the time domain (Le plot amplitude vs time), the frequency domain can tell us interesting information about the energy of a given signal. We can transform an audio signal from the time domain to the frequency domain by applying the Discrete Fourier Transform. Write a function that will do the following: fftBar (soundVec, Fs) a. Take in the audio vector and sampling frequency b. Only use at the first 1000 samples of the audio vector c. Use the fast fourier transform function in MATLAB (fft) to convert the audio signal into the frequency domain. Y fft (audiovec) ; d. The ft function will return the input signal transformed into the frequency domain. You will see that the vector elements will contain both real and imaginary components. For the purpose of this function, we will go ahead and ignore the imaginary component of the signal. This can be done by taking the absolute value of the entire vector Y abs (Y) e. The ft function returns both positive and negative frequencies (referred to as a 2-sided plot). We only want to display the positive ones. In order to do so, create a new vector that only contains the first half of the original vec (Y). Create a frequency vector. We will need this for our bar graph. Use the following expression: f. fPs (0: (length(Y)-1)/2)/1ength (Y) Create a bar graph with frequencies on the horizontal axis and amplitudes on the vertical axis. Format your horizontal axis to show frequencies from 0 to 5 kHz. Your vertical axis should be scaled such that the maximum Y value takes up most of the bar graph. g. h. The function does not need to return anything

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

Beginning VB.NET Databases

Authors: Thearon Willis

1st Edition

1594864217, 978-1594864216

More Books

Students also viewed these Databases questions

Question

4 How can you create a better online image for yourself?

Answered: 1 week ago