资源简介
主要应用于ofdm,解决ofdm的papr过高的问题,利用pts鸡边信息进行峰均比的降低,用matlab写的
代码片段和文件信息
%OFDM PAPR Reduction---PTS Method源代码及参考文献
%******************************************************************************
%******************************SOURCE CODE************************************
%******************************************************************************
% PTS--PAPR Simulation
%
% Reference: S. H. Müller and J. B. Huber “OFDM with Reduced
% Peak–to–Average Power Ratio by Optimum Combination
% of Partial Transmit Sequences” Elect. Lett. vol. 33
% no. 5 Feb. 1997 pp. 368–69.%
%
% Author: Bin Jiang
% National Mobile Communication Research Laboratory
% Southeast University 210096 Nanjing China
% Email: bjiang@seu.edu.cn
clear all; clc; close all;
K = 128; % SIZE OF FFT
V = 4; % NUMBER OF SELECTIONS
QPSK_Set = [1 -1 j -j];
Phase_Set = [1 -1];
Choose = [1 1 1 1; 1 1 1 2; 1 1 2 1; 1 2 1 1; 2 1 1 1;...
1 1 2 2; 1 2 1 2; 1 2 2 1; 2 2 1 1; 2 1 2 1; 2 1 1 2;...
2 2 2 1; 2 2 1 2; 2 1 2 2; 1 2 2 2; 2 2 2 2];
Choose_Len = 16;
MAX_SYMBOLS = 1e4;
PAPR_Orignal = zeros(1MAX_SYMBOLS);
PAPR_PTS = zeros(1MAX_SYMBOLS);
for nSymbol=1:MAX_SYMBOLS
Index = randint(1Klength(QPSK_Set))+1;
X = QPSK_Set(Index(1:)); % Orignal Frequency domain signal
x = ifft(X[]2);
- 上一篇:基于matlab的人工蜂群算法
- 下一篇:RBM玻尔兹曼机的matlab简单演示程序
相关资源
- 基于自适应压扩法降低OFDM系统的峰均
- 基于16QAM调制的OFDM系统仿真实现.zip
- [实用Matlab图像与视频处理][ocr_exampl
- OFDM中降低PAPR的两种方法SLM和PTS
- 改进的SLM方法降低PAPR的MATLAB程序
- PTS matlab 代碼源
- 计算PAPR 的CCDF的MATLAB程序源码
- 降低OFDM系统PAPR算法(PTS-SLM-C变换)
- 降低OFDM峰均比的matlab仿真
- OFDM中降低峰均比的PTS算法
- MATLAB不识别VS缺失的配置文件支持的最
- 64位MATLAB添加VS2017支持mbuild -setup未找
- Matrix completion & Tensor completion经典算法
- PAPR问题的MATLAB程序
- 降低峰均比的PTS程序
- 降低ofdm系统中papr改进pts算法仿真
- MATLAB mexopts配置文件.zip
- 星座图扩展法Active Constellation Extensi
- 分布式压缩感知边信息提取的matlab代
- ofdm tr
- clippingFBMC
- PAPR_FBMC
- 相对完整的OFDM通信系统的仿真设计
- pts OFDM中的降低PAPR中的pts方法的程序
- ofdm-papr_slmPptsPc
- matlab ofdm系统的将 papr算法
- PAPR-Reduction-of-FBMC-Using-Sliding-Window
- ofdm中PTS方法(V=4)PAPR的互补累积分布
评论
共有 条评论