Pairwise summation of two vectors?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jakub
el 30 de Nov. de 2014
Editada: Azzi Abdelmalek
el 30 de Nov. de 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 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 30 de Nov. de 2014
Editada: Azzi Abdelmalek
el 30 de Nov. de 2014
a=[1 2 3]
b=[4 5 6 7]
c=bsxfun(@plus,a.',b)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!