📄 numtoqar.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -