Why the following commands gives the same result for the LTE downlink signals with 75 resource blocks and 100 resource?
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]
I belive that the size of the FFT and the sampling rate were supposed to be different. Am I forgetting something?
function link: https://www.mathworks.com/help/lte/ref/lteofdminfo.html