user_bit_gen.m
上传用户:look542
上传日期:2009-06-04
资源大小:784k
文件大小:1k
源码类别:

传真(Fax)编程

开发平台:

Matlab

  1. function [user_bit,user_bit_cnt]  = user_bit_gen( N_user, N_data ,N_ts,N_data_sym_ts,RateSTCoding,...
  2.     Modulation,RateChCoding ,Turbo_frame,N_Turbo_frame, ch_coding )
  3. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  4. % 功能:       产生不同用户的发送比特
  5. % 每个用户产生的总比特数:(N_ts*N_data_sym_ts)*N_data*RateSTCoding*Modulation*RateChCoding
  6. %           用cell结构体封装不同用户的数据,因为cell结构体的矩阵元素可以维数不同
  7. % 输入:     N_user,用户数
  8. %           N_data,数据子载波数 
  9. %           N_sym,本帧OFDM符号数
  10. %           Modulation, 调制方式
  11. % 输出:     user_bit, 每个用户的比特序列,为cell结构
  12. %           user_bit_cnt, 每个用户的序列长度
  13. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  14. % 每个用户在一个OFDM符号期间发送的比特数
  15. user_bit_tmp = cell( 1,N_user );
  16. if ch_coding == 1
  17.     user_bit_cnt =  Turbo_frame * N_Turbo_frame ;
  18. else
  19.     bit_per_sym =  N_data * Modulation * RateSTCoding  ;
  20.     % 可以选择用户比特分布为:
  21.     % 1) 所有用户比特相同。 
  22.     bit_cnt_sym = repmat(bit_per_sym/N_user,1,N_user);
  23.     
  24.     % 2) 用户按照比例 (1:N_user)/((1 + N_user)*N_user/2) 发送比特数据
  25.     % 目的是为了仿真不同用户的信息比特长度不同的情况,也可以修改得到其他的用户数据比例
  26.     % bit_cnt_sym = round( [1:N_user]/((1 + N_user)*N_user/2) * bit_per_sym );
  27.     user_bit_cnt = bit_cnt_sym * (N_ts*N_data_sym_ts);
  28. end
  29. for u = 1:N_user 
  30.     user_bit_tmp{u} = rand (  user_bit_cnt(u) ,1 ) > 0.5 ;
  31. end
  32. user_bit = user_bit_tmp;