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

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..

답변 (1개)

Hi.
C=1:1:100;
D=1:1:150;
E=1:1:125;
[x,y,z]=meshgrid(C,D,E);
A=[y(:) x(:) z(:)];

이 질문은 마감되었습니다.

질문:

2013년 5월 1일

마감:

2021년 8월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by