フィルターのクリア

Support EVM for PRACH in 5G

6 ビュー (過去 30 日間)
Georges Antoun
Georges Antoun 2023 年 2 月 13 日
コメント済み: Srinath Bagal 2023 年 5 月 29 日
Is there any example that supports extracting the EVM from the PRACH Channel in 5G?
  • if yes, Could you please share it with us?
  • if no, Could you please suggest any helper function or steps to calculate the PRACH EVM?

回答 (1 件)

Anshuman
Anshuman 2023 年 4 月 19 日
Yes, it is possible to extract the EVM (Error Vector Magnitude) from the PRACH (Physical Random Access Channel) in 5G. Here is an example workflow for extracting the EVM from the PRACH in MATLAB:
  • Generating the PRACH signal
carrier = nrCarrierConfig; % Create a carrier configuration object
prach = nrPRACH(carrier); % Generate the PRACH signal
  • Adding noise to the signal
snr = 15; % Signal-to-noise ratio in dB, adjust it to match the desired noise level
prach_noisy = awgn(prach, snr, 'measured'); % adding white gaussian noise
  • Demodulate the signal
[ref, ~] = nrPRACHSequence(carrier); % Generate the PRACH reference symbols
prach_demod = nrPRACHDemodulate(prach_noisy, carrier.NSize, ref);
  • Compute the EVM using the reference symbols and the demodulated PRACH signal
evm = comm.EVM;
[~, emod] = step(evm, ref, prach_demod);
Here emod variable will contain the EVM in percent.
Hope it helps!
  1 件のコメント
Srinath Bagal
Srinath Bagal 2023 年 5 月 29 日
Hi,
Is nrPRACHDemodulate available in R2022a toolbox?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeTest and Measurement についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by