• CCS


    Spectral Characteristics of OFDM Signals

    The signals transmitted on the subcarriers of an OFDM system are mutually orthogonal in the time domain; that is,

     

    However, these signals have significant overlap in the frequency domain.

    This can be observed by computing the Fourier transform of the signal for several values of k.

    Matlab Coding

    Note the large spectral overlap of the main lobes of each I Uk (j) I.

    Also note that the first sidelobe in the spectrum is only 13 dB down from the main lobe.

    Therefore, there is a significant amount of spectral overlap among the signals transmitted on different subcarriers.

    Nevertheless, these signals are orthogonal when transmitted synchronously in time.

     1 % MATLAB script for Illustrative Problem 8.5
     2 
     3 T = 1;
     4 k = 0 : 5;
     5 f_k = k/T;
     6 f = 0 : 0.01*4/T : 4/T;
     7 U_k_abs = zeros(length(k),length(f));
     8 for i = 1 : length(k)
     9     U_k_abs(i,:) = abs(sqrt(T/2)*(sinc((f-f_k(i))*T) + sinc((f+f_k(i))*T)));
    10     U_k_norm(i,:) = U_k_abs(i,:)/max(U_k_abs(i,:));
    11 end
    12 U_k_dB = 10*log10(U_k_norm);
    13 plot(f,U_k_dB(1,:),'black',f,U_k_dB(2,:),'black',f,U_k_dB(3,:),'black',...
    14     f,U_k_dB(4,:),'black',f,U_k_dB(5,:),'black',f,U_k_dB(6,:),'black')
    15 axis([min(f) max(f) -180 20])
    16 xlabel('f')
    17 ylabel('|U_k(f)| (dB)')


    Simulation Result

    Reference,

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

  • 相关阅读:
    k8s1.13.0二进制部署-Dashboard和coredns(五)
    一、服务器简介
    Java检测端口的占用情况
    GreenMail邮件测试服务器
    PowerMock简单使用
    源码-集合:ArrayList
    Maven初步接触
    Java测试工具和框架
    Git初步
    java+搜索引擎
  • 原文地址:https://www.cnblogs.com/zzyzz/p/13736166.html
Copyright © 2020-2023  润新知