Effacer les filtres
Effacer les filtres

How to find combination of random number of vectors?

1 vue (au cours des 30 derniers jours)
Xiaohan Du
Xiaohan Du le 30 Oct 2017
Commenté : Star Strider le 30 Oct 2017
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?

Réponse acceptée

Star Strider
Star Strider le 30 Oct 2017
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 commentaires
Xiaohan Du
Xiaohan Du le 30 Oct 2017
Oh, this is really interesting, thanks!
Star Strider
Star Strider le 30 Oct 2017
As always, my pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by