How to find combination of random number of vectors?

1 回表示 (過去 30 日間)
Xiaohan Du
Xiaohan Du 2017 年 10 月 30 日
コメント済み: Star Strider 2017 年 10 月 30 日
Hi all,
Function combvec gives the combination of n vectors. Imagine I have a cell C contains m vectors, how can I find combination of all m vectors without manually input all of them in combvec?
I think I can do this:
C = {[1 2 3] [2 3 4 5] [9 8 2]};
for i = 1:2
output = combvec(C{i}, C{i + 1});
end
but it only gives me combination of last 2 vectors. Any ideas?

採用された回答

Star Strider
Star Strider 2017 年 10 月 30 日
Save the results in a cell array:
C = {[1 2 3] [2 3 4 5] [9 8 2]};
for i = 1:2
output{i} = combvec(C{i}, C{i + 1});
end
  4 件のコメント
Xiaohan Du
Xiaohan Du 2017 年 10 月 30 日
Oh, this is really interesting, thanks!
Star Strider
Star Strider 2017 年 10 月 30 日
As always, my pleasure!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by