c) Dr. Lee collects the signal of the strain gauge above with the sampling frequency 100...
a) Design a low-pass filter using the given circuitry with a cut-off value of 1 kHz and plot the frequency response curve on the given axes 1.0 0.7 0.5 in out 0.0 101 102 103 104 10s Hz b) Design a band-pass filter using the given circuitry with a bandwidth of 500 Hz and a lower cut-off value of 100 Hz, and draw the frequency response curve. Keep all resistors at the same value (i.e. Ri-R-R3-R4). 1.0 0.7 0.5 0.0...
Can you please help me answer Task 2.b?
Please show all work.
fs=44100; no_pts=8192;
t=([0:no_pts-1]')/fs;
y1=sin(2*pi*1000*t);
figure;
plot(t,y1);
xlabel('t (second)')
ylabel('y(t)')
axis([0,.004,-1.2,1.2]) % constrain axis so you can actually see
the wave
sound(y1,fs); % play sound using windows driver.
%%
% Check the frequency domain signal. fr is the frequency vector and
f1 is the magnitude of F{y1}.
fr=([0:no_pts-1]')/no_pts*fs; %in Hz
fr=fr(1:no_pts/2); % single-sided spectrum
f1=abs(fft(y1)); % compute fft
f1=f1(1:no_pts/2)/fs;
%%
% F is the continuous time Fourier. (See derivation...