資源描述:
《cdma的MATLAB仿真源程序.doc》由會(huì)員上傳分享,免費(fèi)在線(xiàn)閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫(kù)。
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