I want to store in a matrix all the vectors that are created by the hypercube in dimension n, that is, for dimension n=3 for example :
matrix = [[0 0 0], [0 0 1], [0 1 0], [0 1 1],
[1 0 0], [1 0 1], [1 1 0], [1 1 1]]
Is there a good way to do it in scilab ?
Thank you !