欧美极品高清xxxxhd,国产日产欧美最新,无码AV国产东京热AV无码,国产精品人与动性XXX,国产传媒亚洲综合一区二区,四库影院永久国产精品,毛片免费免费高清视频,福利所导航夜趣136
標題:
RS編碼解碼的各種函數 MATLAB代碼
[打印本頁]
作者:
15281727812
時間:
2017-6-18 20:17
標題:
RS編碼解碼的各種函數 MATLAB代碼
RS編碼解碼的各種函數 及主函數 MATLAB代碼
0.png
(53.1 KB, 下載次數: 77)
下載附件
2017-6-18 23:04 上傳
MATLAB源程序如下:
% realize a (31,25) RS encoding & decoding in GF(2^5)
% primitive polynomial in GF(2^5): a^5=a^2+1
% generator polynomial g(x)=(x+a)(x+a^2)(x+a^3)(x+a^4)(x+a^5)(x+a^6)
% codeword length N=31
% information sequence length k=25
% maximum number of error-correcting t=3
% the table convert the powers of a to a decimal number
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];
% the input information sequence
disp('輸入信息序列:')
m_xi=1:25
% press any key to continue, to view the results clearly
disp('Press any key to continue...')
pause
% sequence after encoding
disp('編碼輸出序列(發送序列):')
t_x=rs_encode(m_xi)
disp('Press any key to continue...')
pause
% press any key to continue
disp('信道產生的錯誤位置:')
sitegen=[0 5 30]
disp('信道產生的錯誤數值:')
valuegen=[5 3 7]
num=length(valuegen);
disp('Press any key to continue...')
pause
% press any key to continue
% sequence received after channel
disp('接收序列')
r_x=rs_channel(t_x,num,sitegen,valuegen)
disp('Press any key to continue...')
pause
% press any key to continue
% sequence after decoding
m_xo=rs_decoder(r_x)
disp('Done!')
復制代碼
完整論文下載:
http://www.raoushi.com/bbs/dpj-88155-1.html
所有資料51hei提供下載:
RS.rar
(6.81 KB, 下載次數: 69)
2017-6-18 20:17 上傳
點擊文件名下載附件
下載積分: 黑幣 -5
歡迎光臨 (http://www.raoushi.com/bbs/)
Powered by Discuz! X3.1