Home /
Expert Answers /
Computer Science /
a-raised-cosine-pulse-has-a-narrower-amplitude-spectrum-than-a-square-pulse-which-makes-it-useful-pa658
(Solved): A raised-cosine pulse has a narrower amplitude spectrum than a square pulse, which makes it useful ...
A raised-cosine pulse has a narrower amplitude spectrum than a square pulse, which makes it useful in digital telecommunications. The raised-cosine pulse is defined as s(t)=21+cos(T2πt)rect(Tt). Below there are two questions. 1. Find the expression for the Fourier transform S(f) of the pulse s(t). Remember to consult the equation sheet for the terms of s(t). (max. 15 points) 2. Find the energy spectrum ∣S(f)∣2. (max. 5 points) Write your solutions into the Octave code below. See section below to get your parameters. Listing 29 Energy spectrum of a raised-cosine pulse 1f=−10:0.01:10; 2% Write below your expression for the Fourier transform S(f)3S=2∗4/3∗cos(5∗f)+6∗sinc(f/4);% replace this line with your solution 4 5% Write below your expression for the energy spectrum ∣S(f)∣∧2. You can use 6% the Fourier transform S which you defined above. 7 S_energyspectrum =sin(2∗f)+0.5∗S; % replace this line with your solution 8 9 subplot (2,1,1)10plot(f,S) 11 xlabel(' f(Hz) '); legend('Fourier transform S(f) '); 12 subplot (2,1,2) 13 plot(f, 10*log10(S_energyspectrum)); 14 xlabel(' f(Hz)′); ylabel('dB'); legend('Energy spectrum ∣S(f)∣∧2 ');