How to generate LTE15 PRACH subframes?

2 ビュー (過去 30 日間)
Reza Ameli
Reza Ameli 2018 年 8 月 15 日
回答済み: Iain Stirling 2018 年 8 月 16 日
Hi experts,
I am trying generate LTE15 (NULRB = 75) PRACH format 0 subframes. The expected subframe length is 23040 samples but ltePRACH() yields subframes of length 30720.
Is there anyway to get the correct subframe length from the LTE Toolbox without custom code for resampling?
Thank you very much.

採用された回答

Iain Stirling
Iain Stirling 2018 年 8 月 16 日
Hello Reza,
It is not possible to directly generate the waveform at a different sampling rate, but it should be very easy to perform resampling using the MATLAB resample() function as follows:
>> ue.NULRB = 75;
>> prach.Format = 0;
>> waveform = ltePRACH(ue,prach);
>> waveform = resample(waveform,23040,30720);
>> size(waveform)
ans =
23040 1
For information, the reason we use 30.72 Ms/s is for compatibility with our normal uplink waveforms created using lteSCFDMAModulate.
Regards,
Iain.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLTE Toolbox についてさらに検索

製品


リリース

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by