降低PAPR的ofdm_sim我要分享

PAPR Reduction OFDM_SIM

降低 PAPR

关注次数: 142

下载次数: 0

文件大小: 1.44 kB

代码分类: 其他

开发平台: matlab

下载需要积分: 2积分

版权声明:如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

代码描述

中文说明:这个函数性能的OFDM调制之前的数据传输。


English Description:

This function performance the OFDM modulation before data transmission. function signal_tx = ofdm_modulate(data_tx, ifft_size, carriers, ...     conj_carriers, carrier_count, symb_size, guard_time, fig) % symbols per carrier for this frame carrier_symb_count = ceil(length(data_tx)/carrier_count); % append zeros to data with a length not multiple of number of carriers if length(data_tx)/carrier_count ~= carrier_symb_count,     padding = zeros(1, carrier_symb_count*carrier_count);     padding(1:length(data_tx)) = data_tx;     data_tx = padding; end


代码预览