how can I collect all possible combinations of two numbers from a data set in matlab ?

15 ビュー (過去 30 日間)
R@SH
R@SH 2021 年 10 月 9 日
コメント済み: R@SH 2021 年 10 月 9 日
Dear All,
I have a matrix, like the one s below:
A=[1 2 4 8 16 32];
I want to collect all the possible cases of chossing two array from the above matrix and then have the sum of these values. like below:
1+2=3;
8+32=40;
2+16=18;
How is it possible to access all the possibe combination of two array from a matrix?
I appreciate your support in advance.

採用された回答

DGM
DGM 2021 年 10 月 9 日
編集済み: DGM 2021 年 10 月 9 日
Something like this:
A = [1 2 4 8 16 32];
k = 2;
B = nchoosek(A,k)
C = sum(B,2)
Be aware how fast the size of B will increase as the length of A increases. For A of length N, B will have N!/(k!*(N-k)!) rows.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

製品


リリース

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by