Clear Filters
Clear Filters

Why lteOFDMinfo gives the same results for signals with 75 and 100 resource blocks?

1 view (last 30 days)
Why the following commands gives the same result?
enb = struct('NDLRB',75,'CyclicPrefix','Normal');
lteOFDMInfo(enb)
answer
SamplingRate: 30720000
Nfft: 2048
Windowing: 8
CyclicPrefixLengths: [160 144 144 144 144 144 144 160 144 144 144 144 144 144]
And the same command using 100 resource blocks:
enb = struct('NDLRB',100,'CyclicPrefix','Normal');
lteOFDMInfo(enb)
answer:
SamplingRate: 30720000
Nfft: 2048
Windowing: 8
CyclicPrefixLengths: [160 144 144 144 144 144 144 160 144 144 144 144 144 144]
link about lteOFDMInfo is here

Answers (1)

Graham Freeland
Graham Freeland on 16 Feb 2018
Both of these carrier bandwidths will use the same 2048 point IFF/FFT therefore the sampling rate and CP lengths in samples will be the same.
See the help of lteOFDMModulate for more info on how the FFT size is selected in LTE System Toolbox:
In general, Nfft is the smallest power of 2 greater than or equal to 12*NRB/0.85. It is the smallest FFT that spans all subcarriers and results in a bandwidth occupancy, 12*NRB/Nfft, of no more than 85%.
Cheers,
Graham

Categories

Find more on LTE Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!