⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 multfromrx.m

📁 在matlab中
💻 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 + -