Pairwise summation of two vectors?
3 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Azzi Abdelmalek
2014 年 11 月 30 日
編集済み: Azzi Abdelmalek
2014 年 11 月 30 日
a=[1 2 3]
b=[4 5 6 7]
c=bsxfun(@plus,a.',b)
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!