×

用MATLAB实现的BPSK调制解调源程序

消耗积分:10 | 格式:rar | 大小:333 | 2008-11-30

张静

分享资料个

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
Q_length=length(input_modu);
QAM_input_I = real(input_modu);
QAM_input_Q = imag(input_modu);
output_frame = zeros(1,length(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);

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

评论(2)
发评论
11 2011-06-09
2 回复 举报
可以问问解调中的index要输入什么么? 收起回复
衣服 2011-03-28
2 回复 举报
不错 收起回复

下载排行榜

全部2条评论

快来发表一下你的评论吧 !