Generate matrices of the form [a b c d]
Show older comments
If I have matrices of the form [a b c d]
where
2<=a<=4
1<=b<=2
3<=c<=4
2<=d<=4
Could someone help me with the code/pseudo code to generate all possible matrices?
3 Comments
per isakson
on 11 Mar 2015
Edited: per isakson
on 11 Mar 2015
Are a,b,c,d whole numbers? If not, there will be very many possible vectors.
laurie
on 11 Mar 2015
Stephen23
on 11 Mar 2015
You can easily generate a cell array containing the requested permutations:
X = cell(1,4);
[~,X{:}] = ndgrid(1,2:4,1:2,3:4,2:4);
X = num2cell(cat(1,X{:}),1);
Accepted Answer
More Answers (0)
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!