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

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

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
Pink has a new song, Noise, a highlight of which is a loud Mezzo-soprano As note (880 Hz) This wa...