📄 cnv_encd.m
字号:
% cov_encd(input)
% determines hte output sequence of a binary convolutional encoder
function output = cnv_encd(input)
% generate trellis graphic r=1/3 k0=1 g=[557,663,711];
trel = poly2trellis(9,[557,663,711]);
% add 8 tail bits with binary value 0
input = [input,zeros(size(1:8))];
% convolutional encode
output = convenc(input,trel);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -