📄 multfromrx.m
字号:
function M = multFromRx(rxword,m)% M = multFromRx(rxword,m)%% Generate multiplicity matrix from received codeword. Arguments% are the received vector and the exponent m of the field GF(2^m)% in which the vector's elements lie. The order of elements for% the rows is 0,1,2,... in binary representation and for the% columns it is the power order of alpha.M = zeros(2^m,2^m-1);n = 2^m - 1;for i=0:n Js = find(rxword==i); for j=Js M(i+1,j) = 1; endend
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -