• 大小: 29KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-06-06
  • 语言: Matlab
  • 标签: Turbo_matlab  

资源简介

Turbo码matlab程序,对学习、课程设计以及毕业设计有比较大的帮助

资源截图

代码片段和文件信息

function bin_state = bin_state( int_state m )



% converts an vector of integer into a matrix; the i-th row is the binary form 
% of m bits for the i-th integer

for j = 1:length( int_state )
   for i = m:-1:1
       state(jm-i+1) = fix( int_state(j)/ (2^(i-1)) );
       int_state(j) = int_state(j) - state(jm-i+1)*2^(i-1);
   end
end

bin_state = state;


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

     文件        361  2015-04-19 20:40  最终版\bin_state.m

     文件        865  2015-04-24 10:02  最终版\demultiplex.m

     文件       1443  2015-04-23 20:56  最终版\encoderm.m

     文件        291  2015-04-23 20:30  最终版\encode_bit.m

     文件        195  2015-04-19 20:35  最终版\int_state.m

     文件       3177  2005-09-02 21:23  最终版\logmapo.m

     文件        912  2015-04-23 20:56  最终版\rsc_encode.m

     文件       3127  2005-09-02 21:23  最终版\sova0.m

     文件       1799  2015-04-24 22:05  最终版\trellis.m

     文件     254433  2015-04-23 16:42  最终版\turbo_logmap.txt

     文件       5584  2015-04-24 10:03  最终版\turbo_sys_demo.m

     文件        358  2015-04-23 16:43  最终版\turbo_sys_demo.mat

     文件          0  2015-04-19 19:53  最终版\vect.m

     目录          0  2015-04-24 22:05  最终版

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

               272545                    14


评论

共有 条评论