Pairwise summation of two vectors?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Jakub
le 30 Nov 2014
Modifié(e) : Azzi Abdelmalek
le 30 Nov 2014
Is there a way how to do easily pairwise summation between two vectors? Something like pdist but with sum instead of distance. I want to have sum of every number of one vector with every number of second vector. Thanks
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 30 Nov 2014
Modifié(e) : Azzi Abdelmalek
le 30 Nov 2014
a=[1 2 3]
b=[4 5 6 7]
c=bsxfun(@plus,a.',b)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Matrix Indexing 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!