?? start.m
字號:
function [N, K,tail ] = start(nCode, ch_mode,I_label,S_label,cols)%%% nCode = spreading factor% ch_mode = mode indicating the channel coding scheme% 1 = Convolutional coding with ratio 1/3 and memory length 9 % 2 = Convolutional coding with ratio 1/2 and memory length 9 (NOT YET) % 3 = Turbo coding (NOT YET)%%%% N = Block size% K = Coding ratio% tail = tail length%%%%ch_modeN = 80K = 3 ;tail = 8;if (ch_mode > 1) disp('Only the convolutiona channel coding (1/3, 9) is implemented currently'); return;end;if (nargin > 2)if (I_label>0) rows = cols;end;end;
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -