Advertisement
Guest User

bpsk root raised cosine

a guest
Dec 30th, 2018
498
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.26 KB | None | 0 0
  1. fs = 4*57e3;
  2. dataRate = 1187.5;
  3. rolloff = 1;
  4. samplesPerSymbol = fs/dataRate;
  5. psfilter = rcosdesign(rolloff, 10, samplesPerSymbol);
  6. R = filtfilt(psfilter, 1, BPSKsignal);
  7.  
  8. figure,
  9. plot(90*BPSKsignal), hold on
  10. plot(R), legend('before filter', 'after filter');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement