MATLAB: Generate all cominations

brute forcecombination of valuescombinationsmatrix

I am looking to find all the possible combinations of 2 values over a span. eg. For 24 hrs in a day, I need a variable to take either Val 1 or Val2. This generates 2^24 overall possible combinations of paths to take. How can I generate this Matrix ? I need this for some Brute force analysis. Let me know,
Thanks, Vinay

Best Answer

P = dec2bin(0:(2^24)-1)-'0';
P(P==0) = Val1;
P(P==1) = Val2;
Best wishes
Torsten.