QUESTION 1 (a) A system output is described by the difference equation where?is the unit-step. Find...
Q1. A single-tone FM signal which can be expressed as, s(t) = 4, cos[2oft+ß sin(21f „t)] is applied to a square-law device with output voltage v2 related to input voltage vi by vz(t)= av (t) where a is a constant. a. Determine analytic expression of the output signal. b. Explain how such a device can be used to obtain an FM signal with a greater frequency deviation (Af) than that available at the input. Q2. The spectrum of a message...
solve all
22. The input-output relationship for a linear, time-invariant system is described by differential equation y") +5y'()+6y(1)=2x'()+x(1) This system is excited from rest by a unit-strength impulse, i.e., X(t) = 8(t). Find the corresponding response y(t) using Fourier transform methods. 23. A signal x(1) = 2 + cos (215001)+cos (210001)+cos (2.15001). a) Sketch the Fourier transform X b) Signal x() is input to a filter with impulse response (1) given below. In each case, sketch the associated frequency response...
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...