Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

How to find all possible combinations of 3 nos chosen from 3 different sets??

1 visualizzazione (ultimi 30 giorni)
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..

Risposte (1)

Iman Ansari
Iman Ansari il 1 Mag 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(:)];

Community Treasure Hunt

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

Start Hunting!

Translated by