├── +srsLib ├── +ofh │ └── +compression │ │ ├── srsCompressor.m │ │ └── srsDecompressor.m ├── +phy │ ├── +generic_functions │ │ └── +transform_precoding │ │ │ └── srsTransformDeprecode.m │ ├── +helpers │ │ ├── srsCSIRS2ReservedCell.m │ │ ├── srsCSIRSGetNofFreqRefs.m │ │ ├── srsCSIRSValidateConfig.m │ │ ├── srsConfigurePRACH.m │ │ ├── srsExpandMCS.m │ │ ├── srsGetBitsSymbol.m │ │ ├── srsGetModulation.m │ │ ├── srsGetUniqueSymbolsIndices.m │ │ ├── srsIndexes0BasedSubscrit.m │ │ ├── srsModulationFromMatlab.m │ │ ├── srsRandomGridEntry.m │ │ ├── srsSRSValidateConfig.m │ │ ├── srsSSBgetFirstSubcarrierIndex.m │ │ ├── srsSSBgetFirstSymbolIndex.m │ │ ├── srsSSBgetNumerology.m │ │ └── srsSelectPRACHConfigurationIndex.m │ ├── +lower │ │ └── +modulation │ │ │ └── srsPRACHdemodulator.m │ └── +upper │ │ ├── +channel_coding │ │ └── +ldpc │ │ │ ├── srsLDPCLiftingSizes.m │ │ │ └── srsLDPCsegmenter.m │ │ ├── +channel_modulation │ │ ├── srsDemodulator.m │ │ └── srsModulator.m │ │ ├── +channel_processors │ │ ├── +pucch │ │ │ ├── srsPUCCH1Detector.m │ │ │ ├── srsPUCCH3Demodulator.m │ │ │ ├── srsPUCCH4Demodulator.m │ │ │ └── srsPUCCH4InverseBlockwiseSpreading.m │ │ ├── +pusch │ │ │ ├── srsPUSCHmodulator.m │ │ │ └── srsULSCHScramblingPlaceholders.m │ │ ├── +ssb │ │ │ ├── srsPBCHencoder.m │ │ │ └── srsPBCHmodulator.m │ │ ├── srsPDCCHmodulator.m │ │ ├── srsPDSCHmodulator.m │ │ ├── srsPRACHdetector.m │ │ ├── srsPRACHgenerator.m │ │ └── srsPUCCH1.m │ │ ├── +equalization │ │ └── srsChannelEqualizer.m │ │ └── +signal_processors │ │ ├── srsCSIRSnzp.m │ │ ├── srsChannelEstimator.m │ │ ├── srsPBCHdmrs.m │ │ ├── srsPDCCHdmrs.m │ │ ├── srsPDSCHdmrs.m │ │ ├── srsPSS.m │ │ ├── srsPUCCHdmrs.m │ │ ├── srsPUSCHdmrs.m │ │ └── srsSSS.m └── +ran │ ├── +pdcch │ ├── srsPDCCHCandidatesCommon.m │ └── srsPDCCHCandidatesUE.m │ ├── +pusch │ └── srsTPMISelect.m │ └── +utils │ └── scs2cps.m ├── +srsMEX ├── +phy │ ├── @srsMultiPortChannelEstimator │ │ └── srsMultiPortChannelEstimator.m │ ├── @srsPRACHDetector │ │ └── srsPRACHDetector.m │ ├── @srsPUCCHProcessor │ │ └── srsPUCCHProcessor.m │ ├── @srsPUSCHDecoder │ │ └── srsPUSCHDecoder.m │ ├── @srsPUSCHDemodulator │ │ └── srsPUSCHDemodulator.m │ └── srsPUSCHCapabilitiesMEX.m └── source │ ├── .clang-format │ ├── .clang-tidy │ ├── CMakeLists.txt │ ├── cmake │ └── modules │ │ └── FindSRSRAN.cmake │ ├── docs │ ├── CMakeLists.txt │ ├── doxygen-awesome.css │ ├── header.html │ ├── main.dox │ ├── math_macros.tex │ └── srsRAN_project_logo.png │ ├── include │ └── srsran_matlab │ │ ├── srsran_mex_dispatcher.h │ │ └── support │ │ ├── factory_functions.h │ │ ├── matlab_to_srs.h │ │ ├── memento.h │ │ ├── resource_grid.h │ │ └── to_span.h │ ├── lib │ ├── CMakeLists.txt │ ├── phy │ │ ├── CMakeLists.txt │ │ └── upper │ │ │ ├── CMakeLists.txt │ │ │ ├── channel_processors │ │ │ ├── CMakeLists.txt │ │ │ ├── prach_detector_mex.cpp │ │ │ ├── prach_detector_mex.h │ │ │ ├── pucch_processor_mex.cpp │ │ │ ├── pucch_processor_mex.h │ │ │ ├── pusch_decoder_mex.cpp │ │ │ ├── pusch_decoder_mex.h │ │ │ ├── pusch_demodulator_mex.cpp │ │ │ ├── pusch_demodulator_mex.h │ │ │ └── pusch_processor_capabilities_mex.cpp │ │ │ └── signal_processors │ │ │ ├── CMakeLists.txt │ │ │ ├── multiport_channel_estimator_mex.cpp │ │ │ └── multiport_channel_estimator_mex.h │ └── support │ │ ├── CMakeLists.txt │ │ └── resource_grid.cpp │ └── unittests │ ├── CMakeLists.txt │ └── srsran_mex_dispatcher_test.cpp ├── +srsTest ├── +helpers │ ├── RBallocationMask2string.m │ ├── approxbf16.m │ ├── array2str.m │ ├── bitPack.m │ ├── bitUnpack.m │ ├── cell2str.m │ ├── cellarray2str.m │ ├── indices2SymbolMask.m │ ├── integer2srsBits.m │ ├── logical2str.m │ ├── matlab2srsCyclicPrefix.m │ ├── matlab2srsPUCCHGroupHopping.m │ ├── mcsDescription2Cell.m │ ├── mustBeResourceGrid.m │ ├── randmod.m │ ├── rbAllocationIndexes2String.m │ ├── readComplexFloatFile.m │ ├── symbolAllocationMask2string.m │ ├── writeComplexFloatFile.m │ ├── writeFloatFile.m │ ├── writeInt16File.m │ ├── writeInt8File.m │ ├── writeResourceGridEntryFile.m │ ├── writeUint16File.m │ └── writeUint8File.m ├── copySRStestvectors.m ├── listSRSblocks.m └── srsBlockUnittest.m ├── .gitignore ├── COPYRIGHT ├── CompatibilityTable.md ├── LICENSE ├── README.md ├── apps ├── analyzers │ ├── srsPRACHAnalyzer.m │ ├── srsPUCCHAnalyzer.m │ ├── srsPUSCHAnalyzer.m │ ├── srsParseLogs.m │ └── srsResourceGridAnalyzer.m ├── simulators │ ├── PRACHPERF │ │ ├── PRACHPERF.m │ │ ├── PRACHthresholds.m │ │ └── TrivialChannel.m │ ├── PUCCHPERF │ │ ├── @PUCCHPERF │ │ │ ├── PUCCHPERF.m │ │ │ ├── setupImpl.m │ │ │ └── stepImpl.m │ │ ├── FormatDetailsF0.m │ │ ├── FormatDetailsF1.m │ │ ├── FormatDetailsF2.m │ │ ├── FormatDetailsF3.m │ │ ├── FormatDetailsF4.m │ │ └── private │ │ │ └── joinArrays.m │ └── PUSCHBLER │ │ ├── HARQEntity.m │ │ ├── PUSCHBLER.m │ │ ├── combinePUSCHSims.m │ │ └── hSkipWeakTimingOffset.m └── tutorials │ ├── srsCSIPlanning.m │ └── srsMUMIMO.m ├── runSRSRANUnittest.m ├── srsChEqualizerUnittest.m ├── srsChEstimatorUnittest.m ├── srsDFTProcessorUnittest.m ├── srsDemodulationMapperUnittest.m ├── srsLDPCEncoderUnittest.m ├── srsLDPCRateMatcherUnittest.m ├── srsLDPCSegmenterUnittest.m ├── srsLowPAPRSequenceUnittest.m ├── srsModulationMapperUnittest.m ├── srsNZPCSIRSGeneratorUnittest.m ├── srsOFDMDemodulatorUnittest.m ├── srsOFDMModulatorUnittest.m ├── srsOFHCompressionUnittest.m ├── srsPBCHEncoderUnittest.m ├── srsPBCHModulatorUnittest.m ├── srsPBCHdmrsUnittest.m ├── srsPDCCHCandidatesCommonUnittest.m ├── srsPDCCHCandidatesUeUnittest.m ├── srsPDCCHEncoderUnittest.m ├── srsPDCCHModulatorUnittest.m ├── srsPDCCHProcessorUnittest.m ├── srsPDCCHdmrsUnittest.m ├── srsPDSCHEncoderUnittest.m ├── srsPDSCHModulatorUnittest.m ├── srsPDSCHPTRSGeneratorUnittest.m ├── srsPDSCHProcessorUnittest.m ├── srsPDSCHdmrsUnittest.m ├── srsPRACHConfigurationUnittest.m ├── srsPRACHDemodulatorUnittest.m ├── srsPRACHDetectorUnittest.m ├── srsPRACHGeneratorUnittest.m ├── srsPRSGeneratorUnittest.m ├── srsPUCCHDemodulatorFormat2Unittest.m ├── srsPUCCHDemodulatorFormat3Unittest.m ├── srsPUCCHDemodulatorFormat4Unittest.m ├── srsPUCCHProcessorFormat0Unittest.m ├── srsPUCCHProcessorFormat1Unittest.m ├── srsPUCCHProcessorFormat2Unittest.m ├── srsPUCCHProcessorFormat3Unittest.m ├── srsPUCCHProcessorFormat4Unittest.m ├── srsPUCCHdmrsUnittest.m ├── srsPUSCHDecoderUnittest.m ├── srsPUSCHDemodulatorUnittest.m ├── srsPUSCHProcessorUnittest.m ├── srsPUSCHdmrsUnittest.m ├── srsSRSEstimatorUnittest.m ├── srsSSBProcessorUnittest.m ├── srsShortBlockDetectorUnittest.m ├── srsShortBlockEncoderUnittest.m ├── srsTBSCalculatorUnittest.m ├── srsTPMISelectUnittest.m ├── srsTransformPrecoderUnittest.m ├── srsUCIDecoderUnittest.m ├── srsULSCHDemultiplexUnittest.m ├── srsULSCHInfoUnittest.m └── unitTests ├── @CheckPUSCHConformance ├── CheckPUSCHConformance.m ├── createFRC.m ├── createTestConfigCustom.m ├── createTestConfigTable8_2_1_2_1.m ├── createTestConfigTable8_2_1_2_2.m ├── createTestConfigTable8_2_1_2_3.m ├── createTestConfigTable8_2_1_2_4.m ├── createTestConfigTable8_2_1_2_5.m ├── createTestConfigTable8_2_1_2_6.m ├── createTestConfigTable8_2_1_2_7.m └── createTestConfigTable8_2_2_2_x.m ├── CheckAnalyzers.m ├── CheckPRACHConformance.m ├── CheckPUCCHF0Conformance.m ├── CheckPUCCHF1Conformance.m ├── CheckPUCCHF2Conformance.m ├── CheckPUCCHF3Conformance.m ├── CheckPUCCHF4Conformance.m ├── CheckSimulators.m ├── CheckTests.m └── overloads ├── clipboard.m ├── input.m └── pause.m /+srsLib/+ofh/+compression/srsCompressor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+ofh/+compression/srsCompressor.m -------------------------------------------------------------------------------- /+srsLib/+ofh/+compression/srsDecompressor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+ofh/+compression/srsDecompressor.m -------------------------------------------------------------------------------- /+srsLib/+phy/+generic_functions/+transform_precoding/srsTransformDeprecode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+generic_functions/+transform_precoding/srsTransformDeprecode.m -------------------------------------------------------------------------------- /+srsLib/+phy/+helpers/srsCSIRS2ReservedCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+helpers/srsCSIRS2ReservedCell.m -------------------------------------------------------------------------------- /+srsLib/+phy/+helpers/srsCSIRSGetNofFreqRefs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+helpers/srsCSIRSGetNofFreqRefs.m -------------------------------------------------------------------------------- /+srsLib/+phy/+helpers/srsCSIRSValidateConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+helpers/srsCSIRSValidateConfig.m -------------------------------------------------------------------------------- /+srsLib/+phy/+helpers/srsConfigurePRACH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+helpers/srsConfigurePRACH.m -------------------------------------------------------------------------------- /+srsLib/+phy/+helpers/srsExpandMCS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+helpers/srsExpandMCS.m -------------------------------------------------------------------------------- /+srsLib/+phy/+helpers/srsGetBitsSymbol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+helpers/srsGetBitsSymbol.m -------------------------------------------------------------------------------- /+srsLib/+phy/+helpers/srsGetModulation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+helpers/srsGetModulation.m -------------------------------------------------------------------------------- /+srsLib/+phy/+helpers/srsGetUniqueSymbolsIndices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+helpers/srsGetUniqueSymbolsIndices.m -------------------------------------------------------------------------------- /+srsLib/+phy/+helpers/srsIndexes0BasedSubscrit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+helpers/srsIndexes0BasedSubscrit.m -------------------------------------------------------------------------------- /+srsLib/+phy/+helpers/srsModulationFromMatlab.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+helpers/srsModulationFromMatlab.m -------------------------------------------------------------------------------- /+srsLib/+phy/+helpers/srsRandomGridEntry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+helpers/srsRandomGridEntry.m -------------------------------------------------------------------------------- /+srsLib/+phy/+helpers/srsSRSValidateConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+helpers/srsSRSValidateConfig.m -------------------------------------------------------------------------------- /+srsLib/+phy/+helpers/srsSSBgetFirstSubcarrierIndex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+helpers/srsSSBgetFirstSubcarrierIndex.m -------------------------------------------------------------------------------- /+srsLib/+phy/+helpers/srsSSBgetFirstSymbolIndex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+helpers/srsSSBgetFirstSymbolIndex.m -------------------------------------------------------------------------------- /+srsLib/+phy/+helpers/srsSSBgetNumerology.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+helpers/srsSSBgetNumerology.m -------------------------------------------------------------------------------- /+srsLib/+phy/+helpers/srsSelectPRACHConfigurationIndex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+helpers/srsSelectPRACHConfigurationIndex.m -------------------------------------------------------------------------------- /+srsLib/+phy/+lower/+modulation/srsPRACHdemodulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+lower/+modulation/srsPRACHdemodulator.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+channel_coding/+ldpc/srsLDPCLiftingSizes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+channel_coding/+ldpc/srsLDPCLiftingSizes.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+channel_coding/+ldpc/srsLDPCsegmenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+channel_coding/+ldpc/srsLDPCsegmenter.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+channel_modulation/srsDemodulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+channel_modulation/srsDemodulator.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+channel_modulation/srsModulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+channel_modulation/srsModulator.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+channel_processors/+pucch/srsPUCCH1Detector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+channel_processors/+pucch/srsPUCCH1Detector.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+channel_processors/+pucch/srsPUCCH3Demodulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+channel_processors/+pucch/srsPUCCH3Demodulator.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+channel_processors/+pucch/srsPUCCH4Demodulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+channel_processors/+pucch/srsPUCCH4Demodulator.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+channel_processors/+pucch/srsPUCCH4InverseBlockwiseSpreading.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+channel_processors/+pucch/srsPUCCH4InverseBlockwiseSpreading.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+channel_processors/+pusch/srsPUSCHmodulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+channel_processors/+pusch/srsPUSCHmodulator.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+channel_processors/+pusch/srsULSCHScramblingPlaceholders.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+channel_processors/+pusch/srsULSCHScramblingPlaceholders.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+channel_processors/+ssb/srsPBCHencoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+channel_processors/+ssb/srsPBCHencoder.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+channel_processors/+ssb/srsPBCHmodulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+channel_processors/+ssb/srsPBCHmodulator.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+channel_processors/srsPDCCHmodulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+channel_processors/srsPDCCHmodulator.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+channel_processors/srsPDSCHmodulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+channel_processors/srsPDSCHmodulator.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+channel_processors/srsPRACHdetector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+channel_processors/srsPRACHdetector.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+channel_processors/srsPRACHgenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+channel_processors/srsPRACHgenerator.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+channel_processors/srsPUCCH1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+channel_processors/srsPUCCH1.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+equalization/srsChannelEqualizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+equalization/srsChannelEqualizer.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+signal_processors/srsCSIRSnzp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+signal_processors/srsCSIRSnzp.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+signal_processors/srsChannelEstimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+signal_processors/srsChannelEstimator.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+signal_processors/srsPBCHdmrs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+signal_processors/srsPBCHdmrs.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+signal_processors/srsPDCCHdmrs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+signal_processors/srsPDCCHdmrs.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+signal_processors/srsPDSCHdmrs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+signal_processors/srsPDSCHdmrs.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+signal_processors/srsPSS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+signal_processors/srsPSS.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+signal_processors/srsPUCCHdmrs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+signal_processors/srsPUCCHdmrs.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+signal_processors/srsPUSCHdmrs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+signal_processors/srsPUSCHdmrs.m -------------------------------------------------------------------------------- /+srsLib/+phy/+upper/+signal_processors/srsSSS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+phy/+upper/+signal_processors/srsSSS.m -------------------------------------------------------------------------------- /+srsLib/+ran/+pdcch/srsPDCCHCandidatesCommon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+ran/+pdcch/srsPDCCHCandidatesCommon.m -------------------------------------------------------------------------------- /+srsLib/+ran/+pdcch/srsPDCCHCandidatesUE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+ran/+pdcch/srsPDCCHCandidatesUE.m -------------------------------------------------------------------------------- /+srsLib/+ran/+pusch/srsTPMISelect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+ran/+pusch/srsTPMISelect.m -------------------------------------------------------------------------------- /+srsLib/+ran/+utils/scs2cps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsLib/+ran/+utils/scs2cps.m -------------------------------------------------------------------------------- /+srsMEX/+phy/@srsMultiPortChannelEstimator/srsMultiPortChannelEstimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/+phy/@srsMultiPortChannelEstimator/srsMultiPortChannelEstimator.m -------------------------------------------------------------------------------- /+srsMEX/+phy/@srsPRACHDetector/srsPRACHDetector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/+phy/@srsPRACHDetector/srsPRACHDetector.m -------------------------------------------------------------------------------- /+srsMEX/+phy/@srsPUCCHProcessor/srsPUCCHProcessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/+phy/@srsPUCCHProcessor/srsPUCCHProcessor.m -------------------------------------------------------------------------------- /+srsMEX/+phy/@srsPUSCHDecoder/srsPUSCHDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/+phy/@srsPUSCHDecoder/srsPUSCHDecoder.m -------------------------------------------------------------------------------- /+srsMEX/+phy/@srsPUSCHDemodulator/srsPUSCHDemodulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/+phy/@srsPUSCHDemodulator/srsPUSCHDemodulator.m -------------------------------------------------------------------------------- /+srsMEX/+phy/srsPUSCHCapabilitiesMEX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/+phy/srsPUSCHCapabilitiesMEX.m -------------------------------------------------------------------------------- /+srsMEX/source/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/.clang-format -------------------------------------------------------------------------------- /+srsMEX/source/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/.clang-tidy -------------------------------------------------------------------------------- /+srsMEX/source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/CMakeLists.txt -------------------------------------------------------------------------------- /+srsMEX/source/cmake/modules/FindSRSRAN.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/cmake/modules/FindSRSRAN.cmake -------------------------------------------------------------------------------- /+srsMEX/source/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/docs/CMakeLists.txt -------------------------------------------------------------------------------- /+srsMEX/source/docs/doxygen-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/docs/doxygen-awesome.css -------------------------------------------------------------------------------- /+srsMEX/source/docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/docs/header.html -------------------------------------------------------------------------------- /+srsMEX/source/docs/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/docs/main.dox -------------------------------------------------------------------------------- /+srsMEX/source/docs/math_macros.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/docs/math_macros.tex -------------------------------------------------------------------------------- /+srsMEX/source/docs/srsRAN_project_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/docs/srsRAN_project_logo.png -------------------------------------------------------------------------------- /+srsMEX/source/include/srsran_matlab/srsran_mex_dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/include/srsran_matlab/srsran_mex_dispatcher.h -------------------------------------------------------------------------------- /+srsMEX/source/include/srsran_matlab/support/factory_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/include/srsran_matlab/support/factory_functions.h -------------------------------------------------------------------------------- /+srsMEX/source/include/srsran_matlab/support/matlab_to_srs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/include/srsran_matlab/support/matlab_to_srs.h -------------------------------------------------------------------------------- /+srsMEX/source/include/srsran_matlab/support/memento.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/include/srsran_matlab/support/memento.h -------------------------------------------------------------------------------- /+srsMEX/source/include/srsran_matlab/support/resource_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/include/srsran_matlab/support/resource_grid.h -------------------------------------------------------------------------------- /+srsMEX/source/include/srsran_matlab/support/to_span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/include/srsran_matlab/support/to_span.h -------------------------------------------------------------------------------- /+srsMEX/source/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/CMakeLists.txt -------------------------------------------------------------------------------- /+srsMEX/source/lib/phy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/phy/CMakeLists.txt -------------------------------------------------------------------------------- /+srsMEX/source/lib/phy/upper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/phy/upper/CMakeLists.txt -------------------------------------------------------------------------------- /+srsMEX/source/lib/phy/upper/channel_processors/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/phy/upper/channel_processors/CMakeLists.txt -------------------------------------------------------------------------------- /+srsMEX/source/lib/phy/upper/channel_processors/prach_detector_mex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/phy/upper/channel_processors/prach_detector_mex.cpp -------------------------------------------------------------------------------- /+srsMEX/source/lib/phy/upper/channel_processors/prach_detector_mex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/phy/upper/channel_processors/prach_detector_mex.h -------------------------------------------------------------------------------- /+srsMEX/source/lib/phy/upper/channel_processors/pucch_processor_mex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/phy/upper/channel_processors/pucch_processor_mex.cpp -------------------------------------------------------------------------------- /+srsMEX/source/lib/phy/upper/channel_processors/pucch_processor_mex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/phy/upper/channel_processors/pucch_processor_mex.h -------------------------------------------------------------------------------- /+srsMEX/source/lib/phy/upper/channel_processors/pusch_decoder_mex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/phy/upper/channel_processors/pusch_decoder_mex.cpp -------------------------------------------------------------------------------- /+srsMEX/source/lib/phy/upper/channel_processors/pusch_decoder_mex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/phy/upper/channel_processors/pusch_decoder_mex.h -------------------------------------------------------------------------------- /+srsMEX/source/lib/phy/upper/channel_processors/pusch_demodulator_mex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/phy/upper/channel_processors/pusch_demodulator_mex.cpp -------------------------------------------------------------------------------- /+srsMEX/source/lib/phy/upper/channel_processors/pusch_demodulator_mex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/phy/upper/channel_processors/pusch_demodulator_mex.h -------------------------------------------------------------------------------- /+srsMEX/source/lib/phy/upper/channel_processors/pusch_processor_capabilities_mex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/phy/upper/channel_processors/pusch_processor_capabilities_mex.cpp -------------------------------------------------------------------------------- /+srsMEX/source/lib/phy/upper/signal_processors/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/phy/upper/signal_processors/CMakeLists.txt -------------------------------------------------------------------------------- /+srsMEX/source/lib/phy/upper/signal_processors/multiport_channel_estimator_mex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/phy/upper/signal_processors/multiport_channel_estimator_mex.cpp -------------------------------------------------------------------------------- /+srsMEX/source/lib/phy/upper/signal_processors/multiport_channel_estimator_mex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/phy/upper/signal_processors/multiport_channel_estimator_mex.h -------------------------------------------------------------------------------- /+srsMEX/source/lib/support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/support/CMakeLists.txt -------------------------------------------------------------------------------- /+srsMEX/source/lib/support/resource_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/lib/support/resource_grid.cpp -------------------------------------------------------------------------------- /+srsMEX/source/unittests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/unittests/CMakeLists.txt -------------------------------------------------------------------------------- /+srsMEX/source/unittests/srsran_mex_dispatcher_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsMEX/source/unittests/srsran_mex_dispatcher_test.cpp -------------------------------------------------------------------------------- /+srsTest/+helpers/RBallocationMask2string.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/RBallocationMask2string.m -------------------------------------------------------------------------------- /+srsTest/+helpers/approxbf16.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/approxbf16.m -------------------------------------------------------------------------------- /+srsTest/+helpers/array2str.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/array2str.m -------------------------------------------------------------------------------- /+srsTest/+helpers/bitPack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/bitPack.m -------------------------------------------------------------------------------- /+srsTest/+helpers/bitUnpack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/bitUnpack.m -------------------------------------------------------------------------------- /+srsTest/+helpers/cell2str.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/cell2str.m -------------------------------------------------------------------------------- /+srsTest/+helpers/cellarray2str.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/cellarray2str.m -------------------------------------------------------------------------------- /+srsTest/+helpers/indices2SymbolMask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/indices2SymbolMask.m -------------------------------------------------------------------------------- /+srsTest/+helpers/integer2srsBits.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/integer2srsBits.m -------------------------------------------------------------------------------- /+srsTest/+helpers/logical2str.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/logical2str.m -------------------------------------------------------------------------------- /+srsTest/+helpers/matlab2srsCyclicPrefix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/matlab2srsCyclicPrefix.m -------------------------------------------------------------------------------- /+srsTest/+helpers/matlab2srsPUCCHGroupHopping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/matlab2srsPUCCHGroupHopping.m -------------------------------------------------------------------------------- /+srsTest/+helpers/mcsDescription2Cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/mcsDescription2Cell.m -------------------------------------------------------------------------------- /+srsTest/+helpers/mustBeResourceGrid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/mustBeResourceGrid.m -------------------------------------------------------------------------------- /+srsTest/+helpers/randmod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/randmod.m -------------------------------------------------------------------------------- /+srsTest/+helpers/rbAllocationIndexes2String.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/rbAllocationIndexes2String.m -------------------------------------------------------------------------------- /+srsTest/+helpers/readComplexFloatFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/readComplexFloatFile.m -------------------------------------------------------------------------------- /+srsTest/+helpers/symbolAllocationMask2string.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/symbolAllocationMask2string.m -------------------------------------------------------------------------------- /+srsTest/+helpers/writeComplexFloatFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/writeComplexFloatFile.m -------------------------------------------------------------------------------- /+srsTest/+helpers/writeFloatFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/writeFloatFile.m -------------------------------------------------------------------------------- /+srsTest/+helpers/writeInt16File.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/writeInt16File.m -------------------------------------------------------------------------------- /+srsTest/+helpers/writeInt8File.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/writeInt8File.m -------------------------------------------------------------------------------- /+srsTest/+helpers/writeResourceGridEntryFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/writeResourceGridEntryFile.m -------------------------------------------------------------------------------- /+srsTest/+helpers/writeUint16File.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/writeUint16File.m -------------------------------------------------------------------------------- /+srsTest/+helpers/writeUint8File.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/+helpers/writeUint8File.m -------------------------------------------------------------------------------- /+srsTest/copySRStestvectors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/copySRStestvectors.m -------------------------------------------------------------------------------- /+srsTest/listSRSblocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/listSRSblocks.m -------------------------------------------------------------------------------- /+srsTest/srsBlockUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/+srsTest/srsBlockUnittest.m -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /CompatibilityTable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/CompatibilityTable.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/README.md -------------------------------------------------------------------------------- /apps/analyzers/srsPRACHAnalyzer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/analyzers/srsPRACHAnalyzer.m -------------------------------------------------------------------------------- /apps/analyzers/srsPUCCHAnalyzer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/analyzers/srsPUCCHAnalyzer.m -------------------------------------------------------------------------------- /apps/analyzers/srsPUSCHAnalyzer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/analyzers/srsPUSCHAnalyzer.m -------------------------------------------------------------------------------- /apps/analyzers/srsParseLogs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/analyzers/srsParseLogs.m -------------------------------------------------------------------------------- /apps/analyzers/srsResourceGridAnalyzer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/analyzers/srsResourceGridAnalyzer.m -------------------------------------------------------------------------------- /apps/simulators/PRACHPERF/PRACHPERF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/simulators/PRACHPERF/PRACHPERF.m -------------------------------------------------------------------------------- /apps/simulators/PRACHPERF/PRACHthresholds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/simulators/PRACHPERF/PRACHthresholds.m -------------------------------------------------------------------------------- /apps/simulators/PRACHPERF/TrivialChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/simulators/PRACHPERF/TrivialChannel.m -------------------------------------------------------------------------------- /apps/simulators/PUCCHPERF/@PUCCHPERF/PUCCHPERF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/simulators/PUCCHPERF/@PUCCHPERF/PUCCHPERF.m -------------------------------------------------------------------------------- /apps/simulators/PUCCHPERF/@PUCCHPERF/setupImpl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/simulators/PUCCHPERF/@PUCCHPERF/setupImpl.m -------------------------------------------------------------------------------- /apps/simulators/PUCCHPERF/@PUCCHPERF/stepImpl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/simulators/PUCCHPERF/@PUCCHPERF/stepImpl.m -------------------------------------------------------------------------------- /apps/simulators/PUCCHPERF/FormatDetailsF0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/simulators/PUCCHPERF/FormatDetailsF0.m -------------------------------------------------------------------------------- /apps/simulators/PUCCHPERF/FormatDetailsF1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/simulators/PUCCHPERF/FormatDetailsF1.m -------------------------------------------------------------------------------- /apps/simulators/PUCCHPERF/FormatDetailsF2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/simulators/PUCCHPERF/FormatDetailsF2.m -------------------------------------------------------------------------------- /apps/simulators/PUCCHPERF/FormatDetailsF3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/simulators/PUCCHPERF/FormatDetailsF3.m -------------------------------------------------------------------------------- /apps/simulators/PUCCHPERF/FormatDetailsF4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/simulators/PUCCHPERF/FormatDetailsF4.m -------------------------------------------------------------------------------- /apps/simulators/PUCCHPERF/private/joinArrays.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/simulators/PUCCHPERF/private/joinArrays.m -------------------------------------------------------------------------------- /apps/simulators/PUSCHBLER/HARQEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/simulators/PUSCHBLER/HARQEntity.m -------------------------------------------------------------------------------- /apps/simulators/PUSCHBLER/PUSCHBLER.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/simulators/PUSCHBLER/PUSCHBLER.m -------------------------------------------------------------------------------- /apps/simulators/PUSCHBLER/combinePUSCHSims.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/simulators/PUSCHBLER/combinePUSCHSims.m -------------------------------------------------------------------------------- /apps/simulators/PUSCHBLER/hSkipWeakTimingOffset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/simulators/PUSCHBLER/hSkipWeakTimingOffset.m -------------------------------------------------------------------------------- /apps/tutorials/srsCSIPlanning.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/tutorials/srsCSIPlanning.m -------------------------------------------------------------------------------- /apps/tutorials/srsMUMIMO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/apps/tutorials/srsMUMIMO.m -------------------------------------------------------------------------------- /runSRSRANUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/runSRSRANUnittest.m -------------------------------------------------------------------------------- /srsChEqualizerUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsChEqualizerUnittest.m -------------------------------------------------------------------------------- /srsChEstimatorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsChEstimatorUnittest.m -------------------------------------------------------------------------------- /srsDFTProcessorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsDFTProcessorUnittest.m -------------------------------------------------------------------------------- /srsDemodulationMapperUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsDemodulationMapperUnittest.m -------------------------------------------------------------------------------- /srsLDPCEncoderUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsLDPCEncoderUnittest.m -------------------------------------------------------------------------------- /srsLDPCRateMatcherUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsLDPCRateMatcherUnittest.m -------------------------------------------------------------------------------- /srsLDPCSegmenterUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsLDPCSegmenterUnittest.m -------------------------------------------------------------------------------- /srsLowPAPRSequenceUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsLowPAPRSequenceUnittest.m -------------------------------------------------------------------------------- /srsModulationMapperUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsModulationMapperUnittest.m -------------------------------------------------------------------------------- /srsNZPCSIRSGeneratorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsNZPCSIRSGeneratorUnittest.m -------------------------------------------------------------------------------- /srsOFDMDemodulatorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsOFDMDemodulatorUnittest.m -------------------------------------------------------------------------------- /srsOFDMModulatorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsOFDMModulatorUnittest.m -------------------------------------------------------------------------------- /srsOFHCompressionUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsOFHCompressionUnittest.m -------------------------------------------------------------------------------- /srsPBCHEncoderUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPBCHEncoderUnittest.m -------------------------------------------------------------------------------- /srsPBCHModulatorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPBCHModulatorUnittest.m -------------------------------------------------------------------------------- /srsPBCHdmrsUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPBCHdmrsUnittest.m -------------------------------------------------------------------------------- /srsPDCCHCandidatesCommonUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPDCCHCandidatesCommonUnittest.m -------------------------------------------------------------------------------- /srsPDCCHCandidatesUeUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPDCCHCandidatesUeUnittest.m -------------------------------------------------------------------------------- /srsPDCCHEncoderUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPDCCHEncoderUnittest.m -------------------------------------------------------------------------------- /srsPDCCHModulatorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPDCCHModulatorUnittest.m -------------------------------------------------------------------------------- /srsPDCCHProcessorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPDCCHProcessorUnittest.m -------------------------------------------------------------------------------- /srsPDCCHdmrsUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPDCCHdmrsUnittest.m -------------------------------------------------------------------------------- /srsPDSCHEncoderUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPDSCHEncoderUnittest.m -------------------------------------------------------------------------------- /srsPDSCHModulatorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPDSCHModulatorUnittest.m -------------------------------------------------------------------------------- /srsPDSCHPTRSGeneratorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPDSCHPTRSGeneratorUnittest.m -------------------------------------------------------------------------------- /srsPDSCHProcessorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPDSCHProcessorUnittest.m -------------------------------------------------------------------------------- /srsPDSCHdmrsUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPDSCHdmrsUnittest.m -------------------------------------------------------------------------------- /srsPRACHConfigurationUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPRACHConfigurationUnittest.m -------------------------------------------------------------------------------- /srsPRACHDemodulatorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPRACHDemodulatorUnittest.m -------------------------------------------------------------------------------- /srsPRACHDetectorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPRACHDetectorUnittest.m -------------------------------------------------------------------------------- /srsPRACHGeneratorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPRACHGeneratorUnittest.m -------------------------------------------------------------------------------- /srsPRSGeneratorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPRSGeneratorUnittest.m -------------------------------------------------------------------------------- /srsPUCCHDemodulatorFormat2Unittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPUCCHDemodulatorFormat2Unittest.m -------------------------------------------------------------------------------- /srsPUCCHDemodulatorFormat3Unittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPUCCHDemodulatorFormat3Unittest.m -------------------------------------------------------------------------------- /srsPUCCHDemodulatorFormat4Unittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPUCCHDemodulatorFormat4Unittest.m -------------------------------------------------------------------------------- /srsPUCCHProcessorFormat0Unittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPUCCHProcessorFormat0Unittest.m -------------------------------------------------------------------------------- /srsPUCCHProcessorFormat1Unittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPUCCHProcessorFormat1Unittest.m -------------------------------------------------------------------------------- /srsPUCCHProcessorFormat2Unittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPUCCHProcessorFormat2Unittest.m -------------------------------------------------------------------------------- /srsPUCCHProcessorFormat3Unittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPUCCHProcessorFormat3Unittest.m -------------------------------------------------------------------------------- /srsPUCCHProcessorFormat4Unittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPUCCHProcessorFormat4Unittest.m -------------------------------------------------------------------------------- /srsPUCCHdmrsUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPUCCHdmrsUnittest.m -------------------------------------------------------------------------------- /srsPUSCHDecoderUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPUSCHDecoderUnittest.m -------------------------------------------------------------------------------- /srsPUSCHDemodulatorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPUSCHDemodulatorUnittest.m -------------------------------------------------------------------------------- /srsPUSCHProcessorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPUSCHProcessorUnittest.m -------------------------------------------------------------------------------- /srsPUSCHdmrsUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsPUSCHdmrsUnittest.m -------------------------------------------------------------------------------- /srsSRSEstimatorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsSRSEstimatorUnittest.m -------------------------------------------------------------------------------- /srsSSBProcessorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsSSBProcessorUnittest.m -------------------------------------------------------------------------------- /srsShortBlockDetectorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsShortBlockDetectorUnittest.m -------------------------------------------------------------------------------- /srsShortBlockEncoderUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsShortBlockEncoderUnittest.m -------------------------------------------------------------------------------- /srsTBSCalculatorUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsTBSCalculatorUnittest.m -------------------------------------------------------------------------------- /srsTPMISelectUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsTPMISelectUnittest.m -------------------------------------------------------------------------------- /srsTransformPrecoderUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsTransformPrecoderUnittest.m -------------------------------------------------------------------------------- /srsUCIDecoderUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsUCIDecoderUnittest.m -------------------------------------------------------------------------------- /srsULSCHDemultiplexUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsULSCHDemultiplexUnittest.m -------------------------------------------------------------------------------- /srsULSCHInfoUnittest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/srsULSCHInfoUnittest.m -------------------------------------------------------------------------------- /unitTests/@CheckPUSCHConformance/CheckPUSCHConformance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/@CheckPUSCHConformance/CheckPUSCHConformance.m -------------------------------------------------------------------------------- /unitTests/@CheckPUSCHConformance/createFRC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/@CheckPUSCHConformance/createFRC.m -------------------------------------------------------------------------------- /unitTests/@CheckPUSCHConformance/createTestConfigCustom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/@CheckPUSCHConformance/createTestConfigCustom.m -------------------------------------------------------------------------------- /unitTests/@CheckPUSCHConformance/createTestConfigTable8_2_1_2_1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/@CheckPUSCHConformance/createTestConfigTable8_2_1_2_1.m -------------------------------------------------------------------------------- /unitTests/@CheckPUSCHConformance/createTestConfigTable8_2_1_2_2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/@CheckPUSCHConformance/createTestConfigTable8_2_1_2_2.m -------------------------------------------------------------------------------- /unitTests/@CheckPUSCHConformance/createTestConfigTable8_2_1_2_3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/@CheckPUSCHConformance/createTestConfigTable8_2_1_2_3.m -------------------------------------------------------------------------------- /unitTests/@CheckPUSCHConformance/createTestConfigTable8_2_1_2_4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/@CheckPUSCHConformance/createTestConfigTable8_2_1_2_4.m -------------------------------------------------------------------------------- /unitTests/@CheckPUSCHConformance/createTestConfigTable8_2_1_2_5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/@CheckPUSCHConformance/createTestConfigTable8_2_1_2_5.m -------------------------------------------------------------------------------- /unitTests/@CheckPUSCHConformance/createTestConfigTable8_2_1_2_6.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/@CheckPUSCHConformance/createTestConfigTable8_2_1_2_6.m -------------------------------------------------------------------------------- /unitTests/@CheckPUSCHConformance/createTestConfigTable8_2_1_2_7.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/@CheckPUSCHConformance/createTestConfigTable8_2_1_2_7.m -------------------------------------------------------------------------------- /unitTests/@CheckPUSCHConformance/createTestConfigTable8_2_2_2_x.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/@CheckPUSCHConformance/createTestConfigTable8_2_2_2_x.m -------------------------------------------------------------------------------- /unitTests/CheckAnalyzers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/CheckAnalyzers.m -------------------------------------------------------------------------------- /unitTests/CheckPRACHConformance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/CheckPRACHConformance.m -------------------------------------------------------------------------------- /unitTests/CheckPUCCHF0Conformance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/CheckPUCCHF0Conformance.m -------------------------------------------------------------------------------- /unitTests/CheckPUCCHF1Conformance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/CheckPUCCHF1Conformance.m -------------------------------------------------------------------------------- /unitTests/CheckPUCCHF2Conformance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/CheckPUCCHF2Conformance.m -------------------------------------------------------------------------------- /unitTests/CheckPUCCHF3Conformance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/CheckPUCCHF3Conformance.m -------------------------------------------------------------------------------- /unitTests/CheckPUCCHF4Conformance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/CheckPUCCHF4Conformance.m -------------------------------------------------------------------------------- /unitTests/CheckSimulators.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/CheckSimulators.m -------------------------------------------------------------------------------- /unitTests/CheckTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/CheckTests.m -------------------------------------------------------------------------------- /unitTests/overloads/clipboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/overloads/clipboard.m -------------------------------------------------------------------------------- /unitTests/overloads/input.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/overloads/input.m -------------------------------------------------------------------------------- /unitTests/overloads/pause.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srsran/srsRAN_matlab/HEAD/unitTests/overloads/pause.m --------------------------------------------------------------------------------