numtoqar.m

来自「压缩文件中是Error Correction Coding - Mathemat」· M 代码 · 共 15 行

M
15
字号
function x = numtoQar(xint,Q,Neval,varlist,Nvar)% given a number xint which represents a base-Q representation% of a number with Neval digits, find the base-Q representation.  The % varlist indicates which positions the% digits should go into, out of a possible set of Nvar.% The least significant bits are placed in the variable positions% listed FIRST in varlistx = zeros(1,Nvar);for i=1:Neval  d = mod(xint,Q);  xint = floor(xint/Q);  x(varlist(i)) = d;end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?