资源简介
仿真(ZF,ZF-SIC,ZF-OSIC,MMSE,MMSE-SIC,MMSE-OSIC,ML)Vblast接收机的检测性能,绘制误比特率~信噪比曲线
代码片段和文件信息
function output_frame = demodulation(input_modu index)
% demodulation for IEEE802.11a
% Input: input_modu complex values representing constellation points
% index
% Output: output_frame output bit stream (data unit is one bit)
% In this version increase the quatilization levels into 8.
% note: Matlab index starts from 1
QAM_input_I = real(input_modu);
QAM_input_Q = imag(input_modu);
output_frame = zeros(1length(input_modu)*index);
switch index
case 1
BPSK_Demodu_I = [0 1]; %f(m)=(m+1)/2 + 1 so I=-1 ---> 1 I=1 ---> 2
idx = find(QAM_input_I>1);
QAM_input_I(idx) = 1;
idx = find(QAM_input_I<-1);
QAM_input_I(idx) = -1;
output_frame = BPSK_Demodu_I(round((QAM_input_I+1)/2) + 1);
case 2
QPSK_Demodu_IQ = [0 1]; %f(m)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2693 2012-04-11 17:33 demodulation.m
文件 764 2012-04-11 17:33 minnorm.m
文件 1237 2010-12-01 11:56 modulation.m
文件 5641 2014-07-24 15:24 VBLAST.asv
文件 5647 2014-07-26 10:53 VBLAST.m
- 上一篇:DCDC DCDC仿真电路
- 下一篇:inv_chongfu
相关资源
- fusion_change_detection SAR图像变化检测代
- MotionDetection 静止背景下运动目标检测
- edge_detection 利用小波边缘检测算法实
- image-fusion-and-detection-on-curvelet-wavelet
- copy-and-paste-detection
- MutiTargetDetection 多目标检测与跟踪算法
-
saliency-ob
ject-or-region-detection 该文件 - surface-quality-detection 用matlab实现的表面
- Pedestrian-Detection 一个简单的基于HOG的
- Ship-detection 复杂杂波背景下
- MIMO_detection MIMO系统的几种检测方案
- Matlab-edge-detection-operator
- sar-edge-detection sar 图像边缘检测算子
- ber_linear_detection MIMO系统线性检测算法
- Motion_detect_with_RGBshadow_remove 利用背景
- Moving-target-detection 运动目标检测的一
- ChangeDetectionPCAkMeans 用于变化检测的方
- HC-visual-detection-by-matlab 本资源是清华
- matlab-face-detection pca+svm 与pca +adaboost
- PCA-Face-detection-and-recognition PCA 人脸检
- HaarPSRC=Vehicle-detection 运用harr特征+SR
- Rectangular-Detection 矩形检测
- bridge-road-cracks-detection 代码是matlab编写
- pedestrian-detectionsvms.tar
- MRFaEM-change-detection
- HogPSVM-Pedestrian-Detection- 保证可用的
- Smoke-Detection 视频烟雾检测
- Intrusion-Detection
- Change-Detection-Code 遥感影像变化检测经
- vblast MIMO系统线性均衡
评论
共有 条评论