• 大小: 25KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-07
  • 语言: Matlab
  • 标签: MATLAB  代码  

资源简介

MATLAB SIMULINK通信系统建模仿真实例讲解 中DS_CDMA通信系统 代码

资源截图

代码片段和文件信息

% ************************beginning of file*****************************
% autocorr.m 

% 此函数实现一个序列的自相关运算

 
function [out] = autocorr(indata tn) 
 
%%+++++++++++++++++++++++variables++++++++++++++++++++++++++++
% indata    输入序列
% tn        序列的周期长度
% out       自相关函数 
%++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
if nargin < 2 
    tn = 1; 
end 
 
ln  = length(indata); 
out = zeros(1ln*tn); 
 
for ii=0:ln*tn-1 
    out(ii+1) = sum(indata.*shift(indataii0)); 
end 
 
%************************end of file**********************************

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        618  2009-03-19 20:19  DS_CDMA通信系统\autocorr.m

     文件        738  2009-03-21 13:42  DS_CDMA通信系统\comb2.m

     文件        595  2009-03-19 20:19  DS_CDMA通信系统\compconv2.m

     文件        686  2009-03-19 20:19  DS_CDMA通信系统\compoversamp2.m

     文件        691  2009-03-19 20:19  DS_CDMA通信系统\crosscorr.m

     文件        788  2009-03-19 20:19  DS_CDMA通信系统\delay.m

     文件        992  2009-03-19 20:19  DS_CDMA通信系统\despread.m

     文件     115712  2009-03-22 11:15  DS_CDMA通信系统\DS_CDMA 仿真源程序.doc

     文件       1919  2009-03-19 20:57  DS_CDMA通信系统\fade.m

     文件        627  2009-03-19 20:19  DS_CDMA通信系统\goldseq.m

     文件       1485  2009-03-19 20:36  DS_CDMA通信系统\hrollfcoef.m

     文件       5711  2009-03-21 13:39  DS_CDMA通信系统\main_DSCDMA.m

     文件       1115  2009-03-21 13:42  DS_CDMA通信系统\mseq.m

     文件        700  2009-03-19 20:20  DS_CDMA通信系统\qpskdemod.m

     文件        935  2009-03-19 20:20  DS_CDMA通信系统\qpskmod.m

     文件       1515  2009-03-19 21:11  DS_CDMA通信系统\sefade.m

     文件       1246  2009-03-19 20:20  DS_CDMA通信系统\shift.m

     文件        987  2009-03-19 20:20  DS_CDMA通信系统\spread.m

     目录          0  2011-03-02 09:57  DS_CDMA通信系统

----------- ---------  ---------- -----  ----

               137060                    19


评论

共有 条评论