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

  • 相关阅读:
    Hadoop性能调优、YARN的内存和CPU配置
    linux权限之su和sudo的差别
    Hadoop JobHistory
    Hive存储格式
    左边元素和右边一样高
    状态码
    document.ready(function(){}),window.onload,$(function(){})的区别
    模糊查询实例
    jq实时监测输入框内容改变
    博客遇到的问题
  • 原文地址:https://www.cnblogs.com/zzyzz/p/13701768.html
Copyright © 2011-2022 走看看