首页 > 其他 > 详细

CCS - Digital Transmission via Carrier Modulation - Multicarrier Modulation and OFDM

时间:2020-09-20 20:47:35      阅读:62      评论:0      收藏:0      [点我收藏+]

 

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

 

CCS - Digital Transmission via Carrier Modulation - Multicarrier Modulation and OFDM

原文:https://www.cnblogs.com/zzyzz/p/13701768.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!