Is windowing used when generating the waveform with the 5G NR-TM and FRC Waveform Generation example?

4 views (last 30 days)

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 6 Apr 2020
By default, windowing is turned on for waveforms which are generated with the 5G NR-TM and FRC Waveform Generation example. If you would like windowing to be turned off, the following steps can be used to turn it off:
refwavegen = hNRReferenceWaveformGenerator('NR-FR1-TM3.1');
refwavegen = makeConfigWritable(refwavegen);
refwavegen.Config.Windowing = 0;
[refwaveform,refwaveinfo,info] = generateWaveform(refwavegen);

More Answers (0)

Categories

Find more on Test and Measurement 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!