function y = mintable(n) % MINTABLE y = mintable(n) Table of minterms vectors % Version of 3/2/93 % Generates a table of minterm vectors % Uses the m-function minterm y = zeros(n,2^n); for i = 1:n y(i,:) = minterm(n,i); end