欢迎来到天天文库
浏览记录
ID:42623543
大小:19.28 KB
页数:45页
时间:2019-09-19
《cdma的MATLAB仿真源程序》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、%*************************************************************************************%ThisfunctionpertainstotheadditionofAWGNwithmeanzeroand%parameter'variance'toaninputsignal.%%AUTHOR:WenbinLuo%DATE:04/12/01%%SYNOPSIS:y=awgn(x,var)%x--->inputsignal%var--->variance%y--->y=x+AWGN%
2、***********************************************************************************functiony=awgn(x,var)w=randn(1,length(x));w=w-mean(w)*ones(size(w));w=sqrt(var)*(w/std(w));x=x(:);w=w(:);y=x+w;%*************************************************************************************%
3、ThisfunctiondoestheDS-SSmodulation%%AUTHOR:WenbinLuo%DATE:04/28/01%%SYNOPSIS:y=ds_mod(c,x)%c--->usercode(columnvector)%x--->inputsignal(rowvector)%y--->tmp=c*x,y=tmp(:)(ds-ssmodulatedsignal,columnvector)%*****************************************************************************
4、******functiony=ds_mod(c,x)tmp=c*x;y=tmp(:);%*************************************************************************************%Thisfunctiongeneratesrandom+1/-1sequencewithindependentidentically%distributedsymbols%%AUTHOR:WenbinLuo%DATE:04/28/01%%SYNOPSIS:x=bingen(L)%L--->numbe
5、rofrandomsymbols%***********************************************************************************functionx=bingen(L)%generateLsymbolsrandomlywithvalue+1or-1x=rand(1,L);x(find(x<0.5))=-1;x(find(x>=0.5))=1;%*************************************************************************
6、************%ThisfunctiondoestheDS-SSmodulation%%AUTHOR:WenbinLuo%DATE:04/28/01%%SYNOPSIS:x=ds_demod(c,y)%c--->usercode(columnvector)%y--->tmp=c*x,y=tmp(:)(ds-ssmodulatedsignal,columnvector)%x--->inputsignal(rowvector)%**************************************************************
7、*********************functionx=ds_demod(c,y)tmp=reshape(y,length(c),length(y)/length(c));tmp=tmp';%xisacolumnvectorx=tmp*c;%converttorowvectorx=x';%*************************************************************************************%ThisfunctiondoestheDS-SSmodulation%%AUTHOR:Wenb
8、inLuo%DATE:04/28/01%%SYNOPSIS:y=d
此文档下载收益归作者所有