⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 doexitchart.m

📁 压缩文件中是Error Correction Coding - Mathematical Methods and Algorithms(Wiley 2005)作者:(Todd K. Moon )的配
💻 M
字号:
function z = doexitchart(data,color)% Make Exit Charts% Data should be vertically concatenated exitpath arraysif(nargin==1)  color = 'b';enddata = [[0; 0] data];% plot([data(1,:), data(1,end:-2:2), data(1,3:2:end)],...%      [data(2,:), data(2,end:-2:2), data(2,3:2:end)],[color '--'])p1 = plot(data(1,:),data(2,:),color); hold on;p2 = plot(data(1,end:-2:2),data(2,end:-2:2),[color '--']);p3 = plot(data(1,3:2:end),data(2,3:2:end),color);set(p3,'linewidth',2);set(p2,'linewidth',2);% xl = xlabel('Check-to-Bit Info');% yl = ylabel('Bit-to-Check Info');xl = xlabel('I_{C\rightarrow B}^{[i]}, I_{C\rightarrow B}^{[i+1]}');yl = ylabel('I_{B\rightarrow C}^{[i+1]}, I_{B\rightarrow C}^{[i+1]}');set(xl,'FontSize',15);set(yl,'FontSize',15);axis equal;axis([0 1 0 1]);%title('EXIT Chart')

⌨️ 快捷键说明

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