📄 buildexit.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -