?? compute_codeword.m
字號:
function o=compute_codeword(position,s,jx)
%實現計算碼字濾波的框圖功能
%輸入---固定碼本輸出
%輸出---碼字矢量,得到c(n)
c=zeros(1,40);
for i=1:4
c(position(i))=s(i);
end
%c=c/2^15;
o=c;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -