adding every element of an array with every element of another array?
古いコメントを表示
dear all, i want to add array elements to every other element of another element of another array in simulink/matlab
採用された回答
その他の回答 (3 件)
Vishal Rane
2012 年 11 月 30 日
編集済み: Vishal Rane
2012 年 11 月 30 日
Do you need to do this in MATLAB code ?
A = [ 1 2 3 4]
B = [ 5 6 7 8]
C = A + B = [ 6 8 10 12 ]
Comment back if your requirement is different.
3 件のコメント
Pranav
2012 年 11 月 30 日
Vishal Rane
2012 年 11 月 30 日
arrayfun(@(x)(x+A),B,'Un',0)
will work in that case but output will be a 1x4 cell arrray.
Pranav
2012 年 12 月 3 日
I found this conversation while looking for a faster way to accomplish this task. The code below also works but is just slightly slower in my code on my machine.
X=[A' ones(size(A'))];
Y=[ones(size(B)); B];
reshape(X*Y,1,[])
カテゴリ
ヘルプ センター および File Exchange で Structures についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!