zoukankan      html  css  js  c++  java
  • CCS

    Multicarrier Modulation and OFDM

    In this chapter, we describe the transmission of digital information on multiple
    carriers. In multicarrier modulation, the available channel bandwidth is subdivided into
    a number of equal-bandwidth subchannels,

     

     

     

    Matlab Coding

     1 % MATLAB script for Illustrative Problem 8.1
     2 
     3 M = 50;
     4 m = 0:M-1;
     5 phi_k = 2*pi*rand;
     6 phi_j = 2*pi*rand;
    7 % The sampled signals: 8 x_k = sin(4*pi*m/5+phi_k);
    9 n = 1; 10 x_j_1 = sin(4*pi*m/5+2*pi*m*n/M+phi_j); 11 n = 2 ; 12 x_j_2 = sin(4*pi*m/5+2*pi*m*n/M+phi_j); 13 n = 3 ; 14 x_j_3 = sin(4*pi*m/5+2*pi*m*n/M+phi_j);
    15 % Investigating the orthogonality of the sampled signals: 16 Sum1 = sum(x_k.*x_j_1); 17 % Displaying the results: 18 disp(['The result of the computation for n=1 is: ',num2str(Sum1)]) 19 Sum2 = sum(x_k.*x_j_2); 20 disp(['The result of the computation for n=2 is: ',num2str(Sum2)]) 21 Sum3 = sum(x_k.*x_j_3); 22 disp(['The result of the computation for n=3 is: ',num2str(Sum3)])


    Outputs

    The result of the computation for n=1 is: -4.3743e-14

    The result of the computation for n=2 is: 5.6066e-15

    The result of the computation for n=3 is: -2.9976e-14

    Reference,

      1. <<Contemporary Communication System using MATLAB>> - John G. Proakis

  • 相关阅读:
    osu合集(期望dp)
    P1640 [SCOI2010]连续攻击游戏
    P2155 [SDOI2008]沙拉公主的困惑
    P3419 [POI2005]SAMToy Cars / SP688 SAM Toy Cars
    P3586 [POI2015]LOG
    P4147 玉蟾宫
    P4454 [CQOI2018]破解DH协议
    射击小游戏一02(玩家和怪物添加)
    ASCII,Unicode和UTF8
    Android中MenuInflater实例
  • 原文地址:https://www.cnblogs.com/zzyzz/p/13701768.html
Copyright © 2011-2022 走看看