资源简介
This code is about basic GFDM.
代码片段和文件信息
% Copyright (c) 2014 Technical University Dresden Vodafone Chair Mobile
% Communication Systems
% All rights reserved.
clear all;
K=128;%number of subcarriers
M=8;%number of subsymbols
Kindex = 1:K;
r=0;%length of the cyclic prefix (CP) in multiples of ‘subsymbols‘
CP=r*K;
a=1;%roll-off
% Symbol source
s = 1/sqrt(2)*(sign(randn(KM))+1i*sign(randn(KM)));%basic example
s(:1) = 0;%1st symbol null
if r>0 s(:M-r+1) = 0;end % M-r symbol null
s([(K/8:3*K/8)+K/2]:) = 0;%some null subcarriers
d=reshape(s[K*M 1]);
% Split into real and imag
di = real(d);
dq = imag(d);
% Meyer RRC (defined in time)
R=((0:(K-1))‘-K/2-eps)/(a*K)+1/2;R(R<0)=0;R(R>1)=1;F=1-R;% Ramp rise/fall
R=R.^4.*(35 - 84*R+70*R.^2-20*R.^3);F=1-R;% Meyer auxiliary function
R=1/2*(cos(F*pi)+1);F
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3796 2017-05-04 22:36 GFDM.m
----------- --------- ---------- ----- ----
3796 1
相关资源
- PV matlab编程
- bp神经网络matlab实现2554398
- 对卷积神经网络算法进行大量图像数
- 四旋翼无人机的 三维动态仿真实例
- 《MATLAB 神经网络43个案例分析》源代
- Matlab上使用MPC
- 深度学习matlab源码
- 用VIBE算法提取视频前景
- Variational Mode Decomposition 内含VMD相关
- MPCController 通过carsim与matlab联合仿真
- matlab_code_for_video_compression
- 经典测试函数-MATLAB
- matlab有限元分析与应用(书及源程序
- MATLAB采用ELM进行回归和预测代码
- matlab神经网络43个案例分析.pdf+源码
- featool-multiphysics-setup matlab有限元分析
- 2017matlab深度学习文档
- MPPT with Fuzzy
- matlab解决在孤岛运行模式下,各机组
-
DFIG 基于MATLAB中的Simuli
nk模块中的双 - 天牛须搜索优化算法
- matlab估算锂电池soc
- matlab实现的递归神经网络程序(LSTM)
- matlab制作的RNN神经网络
- 三维装箱MATLAB版
- 光伏并网MATLAB模型
- MATLAB中最新的算法优化工具箱
- PLC_matlab 对电力线的噪声进行分类
- Matlab--Incremental-SVM 完整的增量式支持
- 二维TDOA定位算法仿真程序
评论
共有 条评论