metric.m

来自「卷积码的编码和译码」· M 代码 · 共 30 行

M
30
字号
function distance=metric(x,y)
if x==y
    distance=0;
else 
    distance=1;
end
% switch (y)
% case 0
%     if x==0
%         distance=0.0458;
%     end
%     if x==1
%         distance=2;
%     end
%     if x==2;
%         distance==1.0458;
%     end
% case 1
%     if x==0
%         distance==2;
%     end
%     if x==1
%         distance=0.0458;
%     end
%     if x==2
%         distance=1.0458;
%     end
% otherwise,
%     break;
% end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?