欢迎来到天天文库
浏览记录
ID:55951115
大小:85.00 KB
页数:50页
时间:2020-06-18
《cdma的MATLAB仿真源程序.doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
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;%*************************************************************************************%Thisfunction
3、doestheDS-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)%***********************************************************************************functiony=ds
4、_mod(c,x)tmp=c*x;y=tmp(:);%*************************************************************************************%Thisfunctiongeneratesrandom+1/-1sequencewithindependentidentically%distributedsymbols%%AUTHOR:WenbinLuo%DATE:04/28/01%%SYNOPSIS:x=bingen(L)%L--->numberofrandomsymbols%*******
5、****************************************************************************functionx=bingen(L)%generateLsymbolsrandomlywithvalue+1or-1x=rand(1,L);x(find(x<0.5))=-1;x(find(x>=0.5))=1;%*************************************************************************************%Thisfunctiondoest
6、heDS-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)%***********************************************************************************functionx=ds_de
7、mod(c,y)tmp=reshape(y,length(c),length(y)/length(c));tmp=tmp';%xisacolumnvectorx=tmp*c;%converttorowvectorx=x';%*************************************************************************************%ThisfunctiondoestheDS-SSmodulation%%AUTHOR:WenbinLuo%DATE:04/28/01%%SYNOPSIS:y=d
此文档下载收益归作者所有