Info
This question is closed. Reopen it to edit or answer.
How to find all possible combinations of 3 nos chosen from 3 different sets??
1 view (last 30 days)
Show older comments
How to find all possible combinations of 3 numbers taking 1 from each set defined below C=1:1:100 D=1:1:150 E=1:1:125 Which means I want to make matrix of the order [(100C1 * 150C1*125C1)cross3] with all possible combinations
nchoosek(N,K) is not workin for multiple sets of nos..
0 Comments
Answers (1)
Iman Ansari
on 1 May 2013
Hi.
C=1:1:100;
D=1:1:150;
E=1:1:125;
[x,y,z]=meshgrid(C,D,E);
A=[y(:) x(:) z(:)];
0 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!