enumerate all possible combinations of an input space
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Walter Roberson
il 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 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!