Why are OFDM Subcarriers Sinc Functions?

Поделиться
HTML-код
  • Опубликовано: 23 авг 2024
  • Explains the relationship between the time domain OFDM transmitted signal, and the orthogonal subcarriers in the frequency domain.
    * If you would like to support me to make these videos, you can join the Channel Membership, by hitting the "Join" button below the video, and making a contribution to support the cost of a coffee a month. It would be very much appreciated.
    Check out my 'search for signals in everyday life', by following my social media feeds:
    Facebook: www.facebook.c...
    Instagram: / iainexplains
    Website: www.iaincolling...
    Related videos: (see: iaincollings.com)
    • What is a Constellation Diagram? • What is a Constellatio...
    • OFDM Waveforms • OFDM Waveforms
    • OFDM and the DFT • OFDM and the DFT
    • How are OFDM Sub Carrier Spacing and Time Samples Related? • How are OFDM Sub Carri...
    • What are Doppler Shift, Doppler Spread, and Doppler Spectrum? • What are Doppler Shift...
    • What is a Matched Filter? • What is a Matched Filter?
    • Fourier Transform Duality Rect and Sinc Functions • Fourier Transform Dual...
    • What is a Cyclic Prefix in OFDM? • What is a Cyclic Prefi...
    • How does OFDM Overcome ISI? • How does OFDM Overcome...
    • Why is Subcarrier Spacing Bigger in 5G Mobile Communications? • Why is Subcarrier Spac...
    • What is SC-FDMA? And why is it used for the Uplink of 4G/5G Mobile? • What is SC-FDMA? And w...
    • Why is SC-FDMA called "Single Carrier"? • Why is SC-FDMA called ...
    • What is MIMO OFDM? • What is MIMO OFDM?
    Full categorised list of videos with pdf Summary Sheets: iaincollings.com

Комментарии • 13

  • @koteshsharma2950
    @koteshsharma2950 21 день назад

    Excellent explanation, thanks a lot sir

  • @user-dh9qf4eu7i
    @user-dh9qf4eu7i 17 дней назад

    Thank you for your explanation. I have a question. Is it correct to make OFDM symbol and then go through the pulse shaping filter? If so, will the shape of the waveform change?

  • @JaySmith91
    @JaySmith91 19 дней назад

    I am wondering why it ends up as the modulus of the sinc function, i.e. why there's no negative values over there in the frequency domain.

    • @iain_explains
      @iain_explains  19 дней назад +1

      Generally people only plot the magnitude, in the frequency domain. There is a corresponding phase plot, which flips by 180 degrees in the frequency ranges where the “amplitude” is negative.

  • @theoryandapplication7197
    @theoryandapplication7197 Месяц назад

    thank you very much,

  • @pitmaler4439
    @pitmaler4439 2 месяца назад

    The vector C_n represents just integer values of the base function f1 - ist that right?
    Or can use other step sizes e.g. f2 = 1.5*f1; f3 = 3*f1.....

    • @iain_explains
      @iain_explains  2 месяца назад

      They need to be integer, in order to maintain the orthogonality between the subcarriers. Hopefully this video explains it: "OFDM Waveforms" ruclips.net/video/F6B4Kyj2rLw/видео.html

  • @AbhayNarasimhaKS
    @AbhayNarasimhaKS 2 месяца назад

    2:04 If only the first element is nonzero, the output of IDFT has to be the DC value, not the sinusoid of fundamental frequency. The subcarriers range from C_0 to C_{N-1}. C_0 will correspond to the DC value at the output and C_1 will give the fundamental sinusoid of period = N. Please respond if I am wrong.

    • @iain_explains
      @iain_explains  2 месяца назад +2

      Yes, you're right. I simplified the diagram, only showing the elements of the vector that relate to the data-carrying sub channels.

    • @028gnanadathareddy4
      @028gnanadathareddy4 2 месяца назад

      @@iain_explains I did not understood how output of IDFT is sinusoidal with .output of IDFT will be all of same elements for given example right.

    • @iain_explains
      @iain_explains  2 месяца назад

      Try running these lines of code in Matlab:
      X=zeros(1,40); % Frequency domain vector
      X(2)=1; % Put data into the first subcarrier (only) ... note that X(1) corresponds to f=0
      x=ifft(X); % Use IFFT to generate time domain signal
      stem(real(x)) % plot the time domain signal