fill_k2.m
来自「this is for demo in matlab」· M 代码 · 共 9 行
M
9 行
function K2 = fill_K2 (B)
% for K2 the results with Karnought are:
% [c0 c1 0 1 c4 c5 1 c7 c8 c9 0 1 c12 c13 1 c14 ]
% [0 1 ... 1 1 ... 1 0 1 ... 1 1 ... 1 ]
% fill the variables for K2 in the corresponding places
K2 = [B(1:2) 0 1 B(3:4) 1 B(5:7) 0 1 B(8:9) 1 B(10)];
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?