?? bittosymbolstream.m
字號(hào):
function x = BitToSymbolStream(B,Nbits);% x = BitToSymbolStream(B,Nbits);%% MSB firstLb = length(B);if mod(Lb,Nbits)~=0, error('Bitstream length is incompatible with symbol length');end;Lx = Lb/Nbits;x = zeros(1,Lx);for n = 1:Nbits, x = x + 2^(Nbits-n)*B(n:Nbits:Lb);end;
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -