enumerate all possible combinations of an input space
4 views (last 30 days)
Show older comments
for example I have 3 categorical variable, X1 can be 'A,B,or C', X2 can be 'A or D', X3 can be 'E or F', so there can be 3X2X2 different possible combinations:
AAE,AAF, ADE,ADF,BAE,BAF,BDE,BDF,CAE,CAF,CDE,CDF.
which function sould I use to create such a complete list?
0 Comments
Answers (1)
Walter Roberson
on 14 Mar 2021
X1 = categorical({'A', 'B', 'C'})
X2 = categorical({'A', 'D'})
X3 = categorical({'E', 'F'})
[X1g, X2g, X3g] = ndgrid(X1, X2, X3);
output = [X1g(:), X2g(:), X3g(:)]
0 Comments
See Also
Categories
Find more on Data Type Conversion 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!