buildexit.m

来自「压缩文件中是Error Correction Coding - Mathemat」· M 代码 · 共 19 行

M
19
字号
function z=buildexit(ctob,btoc)% function buildexit(ctob,btoc)%% given the mutual information ctob and btoc as a function of iteration,% stack these up according to the iteration number to % form the exit chartxpath=[0 0];ypath=[0 btoc(1)];for(i=1:(length(ctob)-1))    xpath=[xpath ctob(i) ctob(i)];    ypath=[ypath btoc(i) btoc(i+1)];endxpath=[xpath ctob(end)];ypath=[ypath btoc(end)];z=[ xpath ; ypath ];

⌨️ 快捷键说明

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