(continued)On the combination of N-dim vector.

Yesterday I asked how to write code to visit every combination of N-dim vector(with entry 0,1 or 2), and it is very helpful by just trying below:
[C{1:N}]=ndgrid(0:2);
M=reshape(vertcat(C{:}),[],N);
Then for i=1:3^N, trying M(i,:) is the answer. However, if I want to add constraint on those 3^N vectors, how to adjust the code?
For example I want all combinations that less than or equal to another vector V(every entry is less than or equal to V's entry). For another one, I want to try those combinations in a order, by least sum of all entries to most.
Thank you for your help!

6 Comments

Is there anyone can help me on this problem? Many thanks!
Can you give an example of your constraints for a small N (say 3).
Daniel, now I got all combinations of the N-dimension vectors. let me ask you again on this problem:
1. If I got a vector say a, that I want to choose all 3^N rows that <=a, is there a fast way? I know I can add a if command, as a filter when I use fullfact(). But is there a faster way to do so?
2. Also can I get the combinations in the order that the sum is from least to most? I think the output is already in this order right? How can I change the order, say from most to least, or something else?
Many thanks!
I don't understand your constraints. Edit your question to include the rule and an example of what rows you want.
Sorry, sure let me give you an example: say N=4; M = fullfact(repmat(3, N, 1))-1;
But I have a vector say a=[1,2,0,1] and I want to list all rows in M that <=a. How can I modify the code? I know that if I add a if-command, I can filter M, but I think it may be slow.
Also, if I want to order all rows in M in a descendant or ascendant order by the sum of vector. How shall I do it? I notice that the output is already in a ascendant order, is that true or convention?
Thanks.
Hello, Daniel, could you answer my question please if there is a better way?
Thank you so much!

Sign in to comment.

 Accepted Answer

1 Comment

Daniel, is it possible to look at my question? How to consider a constraint on the combinator and solve it fast?

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!