How the concatenate every combination of vectors?

1 回表示 (過去 30 日間)
Joaquim
Joaquim 2017 年 5 月 2 日
回答済み: Guillaume 2017 年 5 月 2 日
Hello everybody,
I have 6 vectors and i want to concatenate every combination between these vectors in one individual vector. Let's call the six vectors a,b,c,d,e,f.What I want to do is create a several concatenated vector like this:
first_vector=[a]; second_vector=[b]; (...); n_vector=[a b]; (...); last=[a b c d e f];
Can somebody help me? Joaquim

採用された回答

Guillaume
Guillaume 2017 年 5 月 2 日
allvectors = {a, b, c, d, e, f}; %cell array of all the vectors
allcombs = {};
for c = 1:numel(allvectors)
combidx = nchoosek(1:numel(allvectors), c);
ccombs = cell(size(combidx, 1), 1);
for row = 1:numel(ccombs)
ccombs{row} = [allvectors{combidx(row, :)}];
end
allcombs = [allcombs; ccombs];
end

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by