Question

Pink has a new song, Noise, a highlight of which is a loud Mezzo-soprano As note (880 Hz) This was recorded live at the recen

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Given that

we have to plot the voltage signal from microphone

a) enter the following program in matlab to plot the voltage signal obtained from the microphone

fs=2205;

T=1/fs;

t=0:T:1;

Vt=0.447*cos(2093*pi*t)+0.314*cos(100*pi*t)+1;

plot(t,Vt);title('voltage signal from the microphone');

xlabel('time (s)');ylabel('Voltage');

the signal is as follows

voltage signal from the microphone 1.8 1.6 1.4 1.2 0.8 0.6 0.4 0.2 0 0. 02 03 04 0.5 06 0.7 0.8 0.9 time (s)

b) without dc offset the signal is plotted using the following equation

fs=2205;

T=1/fs;

t=0:T:1;

Vt=0.447*cos(2093*pi*t)+0.314*cos(100*pi*t);

plot(t,Vt);title('voltage signal from the microphone');

xlabel('time (s)');ylabel('Voltage');


the waveform is

voltage signal from the microphone 0.8 0.6 0.4 0.2 0.2 0.4 0.6 0.8 0 0. 02 03 04 0.5 06 0.7 0.8 0.9 time (s)

c) enter the following to design the high pass filter in matlab

d=fdesign.highpass('N,Fc',10,100,2205);
designmethods(d);
Hd = design(d);
y = filter(Hd,Vt);
plot(t,y);

this is not goining to work since the sampling frequency is still at 2205Hz and not at 44100Hz

d) enter the following to get the square wave plot

x = square(t);
plot(t,x);

the waveform changes its shape since it is a square wave now

Add a comment
Know the answer?
Add Answer to:
Pink has a new song, Noise, a highlight of which is a loud Mezzo-soprano As note (880 Hz) This wa...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT