This document provides study material and solved assignments for Signals and Systems. It covers topics such as Fourier transform, auto-correlation, frequency shift, and more.
Contribute Materials
Your contribution can guide someone’s learning journey. Share your
documents today.
0SIGNALS AND SYSTEMS SIGNALS AND SYSTEMS Name of the Student Name of the University Author Note
Secure Best Marks with AI Grader
Need help grading? Try our AI Grader for instant feedback on your assignments.
1SIGNALS AND SYSTEMS Question 1: a) The given signal is f(t) = 1-3<t<3 = 0Otherwise The Fourier transform of the following signal is calculated by integration as given below. F(ω) =∫ −∞ ∞ f(t)∗e−jωtdt=∫ −3 3 1∗e−jωtdt=−[e¿¿−jωt]−3 3¿/jω=(j ω)∗(e−3jω−e3jω) b) Now, the Fourier transform ofe(j100t)f(2t−10)is calculated using the Fourier transform properties as given below. F(f(2(t-5)) = 2*e^(-jω3)*F(jω) =2*e^(-jω3)*(j ω)∗(e−3jω−e3jω)= (2j/ω)*(e−6jω−1¿ Now, F(e(jw0t)∗x(t)¿=X(ω−w0) Hence, F(e(j100t)f(2t−10)¿=¿(2j/(ω-100))*(e−6j(ω−100)−1¿ Question 2: The inverse Fourier transform of F(ω) = 2δ(ω−4¿+ 2δ(ω+4¿is calculated as given below. The inverse Fourier transform is given by g(t) =1 2π∫ −∞ ∞ G(ω)ejωtdω Hence, f(t) =1 2π∫ −∞ ∞ (2δ(ω−4)+2δ(ω+4))ejωtdω Now, by property of IFT ofδ(ω−w0)=1 √2πe−w0∗jt
2SIGNALS AND SYSTEMS Hence,F−1(2δ(ω−4¿+ 2δ(ω+4¿) = 2*F−1(δ(ω−4))+2∗F−1(δ(ω+4)) = 2*1 √2πe−4∗jt+2 √2πe4∗jt =√2 π(e−4∗jt+e4∗jt) Question 3: h(t)=u(t)∗e−4t H(ω¿=((4−jω) √2π) Y(ω¿= H(ω¿*X(ω¿ X(ω¿= rect(ω/2¿ Hence, Y(ω¿=((4−jω) √2π)rect(ω/2¿ Question 4: a) y(t) = 1 + cos(πt)-1<t<1 = 0otherwise x(t) = 1-1<t<1 = 0otherwise y(t) = x(t)s(t) MATLAB code: t = -1:0.1:1; x = ones(1,length(t)); s = 1 + cos(pi.*t);
3SIGNALS AND SYSTEMS y = s.*x; plot(t,x,'m-',t,s,'rd',t,y,'b-') xlim([-5,5]) legend('x(t)','s(t)','y(t)') xlabel('time t') ylabel('signal') Plot: -5-4-3-2-1012345 time t 0 0.2 0.4 0.6 0.8 1 1.2 1.4 1.6 1.8 2 signal x(t) s(t) y(t) b) The Fourier transform of x(t) is F(x(t)) =∫ −∞ ∞ f(t)∗e−jωtdt=∫ −1 1 1∗e−jωtdt=(j ω)∗(e−jω−ejω)= X(jω¿ c) Now, the Fourier transform of s(t) is
Paraphrase This Document
Need a fresh take? Get an instant paraphrase of this document with our AI Paraphraser
4SIGNALS AND SYSTEMS F(s(t)) = F(1 + cos(πt)) = F(1) + F(cos(πt)) =(j ω)∗(e−jω−ejω)−jωexp(−jω)(exp(2jω)−1) j2ω2+π2 ¿(π2)∗exp(−jω)(exp(2jω)−1) jω(j2ω2+π2)= S(jω¿ d) Now, by the property of Fourier transform product in time domain = convolution in frequency domain. Hence, by formula F(y(t)) = F(x(t)s(t)) = X(jω¿∗S(jω)=(1 2π)∗∫ −1 1 X(jω')S(j(ω−ω'))dω' Now, computing the integral we get the same result as Y(ω¿=(π2)∗exp(−jω)(exp(2jω)−1) jω(j2ω2+π2) Question 5: a) Given signal, x(t) = 4,0< t <2 = 0Otherwise Energy spectral density E =∫ 0 2 [x(t)] 2 dt=∫ 0 2 [4]2 dt= 16*2 = 32. b) The auto-correlation function of the continuous-time signal is given by, Rff(τ) =∫ 0 2 x(t+τ)x(t)'dt=∫ 0 2 2∗2dt=∫ 0 2 4dt= 4(2-0)= 8. c) The Parseval’s theorem of the signal is given by,
5SIGNALS AND SYSTEMS Power P =∫ −∞ ∞ |x(t)| 2 dt=1 2π∫ −∞ ∞ |X(ω)| 2 dω=∫ −∞ ∞ |X(2πf)| 2 df d) The energy spectral density of the output signal is given by, ESD =|H(ω)|2 ∗|X(ω)|2 Where, H(ω) = F(h(t)) = 1/(2 + jω) X(ω) = 4(1-exp(-j2ω))/(jω) |X(ω)|^2 = (16/ω^2) Hence, ESD = (16/(ω^2)(4 + ω^2)) e) The total energy of output signal is given by, E =∫ 0 2 (16 (ω2)(4+ω2))dω f) The MATLAB code for plot of x(t), h(t), autocorrelation of x(t) and spectral density of input x(t) and y(t) is given below. MATLAB code: t = 0:0.1:2; x = repmat(4,1,length(t)); h = exp(-2.*t); y = h.*x; autocorrx = xcorr(x); inputpsd = dspdata.psd(x); figure(1)
6SIGNALS AND SYSTEMS subplot(2,1,1) plot(inputpsd) title('plot of input PSD') outputpsd = dspdata.psd(y); subplot(2,1,2) plot(outputpsd) title('plot of output PSD') figure(2) subplot(2,2,1) plot(t,x) title('x(t)') subplot(2,2,2) plot(t,h) title('h(t)') subplot(2,2,[3 4]) plot(autocorrx) title('autocorrelation signal of x(t)') energyx = sum(x.^2) energyy = sum(y.^2) Output:
Secure Best Marks with AI Grader
Need help grading? Try our AI Grader for instant feedback on your assignments.
7SIGNALS AND SYSTEMS energyx = 336 energyy = 48.5210 00.10.20.30.40.50.60.70.80.91 Normalized Frequency (rad/sample) 5 5.5 6 6.5 7 Power/frequency (dB/(rad/sample)) plot of input PSD 00.10.20.30.40.50.60.70.80.91 Normalized Frequency (rad/sample) -10 -5 0 5 10 Power/frequency (dB/(rad/sample)) plot of output PSD
8SIGNALS AND SYSTEMS 00.511.52 3 3.5 4 4.5 5x(t) 00.511.52 0 0.5 1h(t) 051015202530354045 0 100 200 300 400autocorrelation signal of x(t) Question 6: The frequency of the cosine wave of 2.2 MHz which is sampled by rate 5 Msamples/sec and then reconstructed. The frequency of the reconstructed signal = 2.2/5 = 0.44 MHz Question 7: The frequency shift property of Fourier transform is given by, F(e(jω0t)) = X(j(ω – ω0)) This can be proved by the following, F(e(jω0t)) = Question 8:
9SIGNALS AND SYSTEMS Given that x(t) is purely imaginary From the Fourier transform property it is known that If, F(x(t)) = X(jω) then F(x*(t)) = X*(-jω) Now, if x(t) = ja, where, a is any constant F(ja) = aX(ω) and F(-ja) = (-a)X*(-ω) Hence, X(ω) = - X*(-ω) Question 9: h(t) = Real(g(t)*exp(jω0t)) H(ω) = F(h(t)) Re(z) = (z + z’)/2 Let, z = a + jb, z’ = a – jb Re(z) = a Hence, F(Re(z)) = a*delta(t)
Paraphrase This Document
Need a fresh take? Get an instant paraphrase of this document with our AI Paraphraser