• 大小: 37KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-16
  • 语言: Matlab
  • 标签: matlab  

资源简介

Turbo码matlab程序BCJR、SOVA都有 Turbo码matlab程序BCJR、SOVA都有

资源截图

代码片段和文件信息

%---------------------------------------------%
%       %
%          工作室提供代做matlab仿真       %
%       %
%  详情请访问:http://cn.mikecrm.com/5k6v1DP  %
%       %
%---------------------------------------------%
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;


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-04-09 17:24  Turbo码matlab程序BCJR、SOVA都有\
     文件         591  2019-04-09 17:25  Turbo码matlab程序BCJR、SOVA都有\bin_state.m
     文件        1095  2019-04-09 17:25  Turbo码matlab程序BCJR、SOVA都有\demultiplex.m
     文件         521  2019-04-09 17:25  Turbo码matlab程序BCJR、SOVA都有\encode_bit.m
     文件        1673  2019-04-09 17:25  Turbo码matlab程序BCJR、SOVA都有\encoderm.m
     文件         425  2019-04-09 17:25  Turbo码matlab程序BCJR、SOVA都有\int_state.m
     文件        3407  2019-04-09 17:25  Turbo码matlab程序BCJR、SOVA都有\logmapo.m
     文件        1142  2019-04-09 17:25  Turbo码matlab程序BCJR、SOVA都有\rsc_encode.m
     文件        3357  2019-04-09 17:25  Turbo码matlab程序BCJR、SOVA都有\sova0.m
     文件        2029  2019-04-09 17:25  Turbo码matlab程序BCJR、SOVA都有\trellis.m
     文件      254433  2015-04-23 16:42  Turbo码matlab程序BCJR、SOVA都有\turbo_logmap.txt
     文件        5814  2019-04-09 17:25  Turbo码matlab程序BCJR、SOVA都有\turbo_sys_demo.m
     文件         358  2015-04-23 16:43  Turbo码matlab程序BCJR、SOVA都有\turbo_sys_demo.mat

评论

共有 条评论