欧美极品高清xxxxhd,国产日产欧美最新,无码AV国产东京热AV无码,国产精品人与动性XXX,国产传媒亚洲综合一区二区,四库影院永久国产精品,毛片免费免费高清视频,福利所导航夜趣136

 找回密碼
 立即注冊

QQ登錄

只需一步,快速開始

搜索
查看: 8713|回復: 0
打印 上一主題 下一主題
收起左側

RS編碼解碼的各種函數 MATLAB代碼

[復制鏈接]
跳轉到指定樓層
樓主
RS編碼解碼的各種函數 及主函數   MATLAB代碼


MATLAB源程序如下:
  1. % realize a (31,25) RS encoding & decoding in GF(2^5)
  2. % primitive polynomial in GF(2^5):  a^5=a^2+1
  3. % generator polynomial g(x)=(x+a)(x+a^2)(x+a^3)(x+a^4)(x+a^5)(x+a^6)
  4. % codeword length N=31
  5. % information sequence length k=25
  6. % maximum number of error-correcting t=3

  7. % the table convert the powers of a to a decimal number
  8. T=[1,2,4,8,16,5,10,20,13,26,17,7,14,28,29,31,27,19,3,6,12,24,21,15,30,25,23,11,22,9,18];

  9. % the input information sequence
  10. disp('輸入信息序列:')
  11. m_xi=1:25
  12. % press any key to continue, to view the results clearly
  13. disp('Press any key to continue...')
  14. pause
  15. % sequence after encoding
  16. disp('編碼輸出序列(發送序列):')
  17. t_x=rs_encode(m_xi)

  18. disp('Press any key to continue...')
  19. pause
  20. % press any key to continue
  21. disp('信道產生的錯誤位置:')
  22. sitegen=[0 5 30]
  23. disp('信道產生的錯誤數值:')
  24. valuegen=[5 3 7]
  25. num=length(valuegen);
  26. disp('Press any key to continue...')
  27. pause
  28. % press any key to continue
  29. % sequence received after channel
  30. disp('接收序列')
  31. r_x=rs_channel(t_x,num,sitegen,valuegen)
  32. disp('Press any key to continue...')
  33. pause
  34. % press any key to continue
  35. % sequence after decoding
  36. m_xo=rs_decoder(r_x)
  37. disp('Done!')
復制代碼

完整論文下載:http://www.raoushi.com/bbs/dpj-88155-1.html

所有資料51hei提供下載:
RS.rar (6.81 KB, 下載次數: 69)



分享到:  QQ好友和群QQ好友和群 QQ空間QQ空間 騰訊微博騰訊微博 騰訊朋友騰訊朋友
收藏收藏 分享淘帖 頂 踩
回復

使用道具 舉報

無效樓層,該帖已經被刪除
您需要登錄后才可以回帖 登錄 | 立即注冊

本版積分規則

小黑屋|51黑電子論壇 |51黑電子論壇6群 QQ 管理員QQ:125739409;技術交流QQ群281945664

Powered by 單片機教程網

快速回復 返回頂部 返回列表