How to sum the values from multiple arrays with the same dimensions?
57 次查看(过去 30 天)
显示 更早的评论
I have four arrays (2400 x 2800) - I need to sum the values of each cell in the first array with the same cell from the other three arrays. How would I go about doing this?
0 个评论
采纳的回答
Guillaume
2018-11-7
Use + ?
result = array1 + array2 + array3 + array4; %of course using the actual names of the arrays
However, it sounds like you shouldn't have 4 separate arrays in the first place, but a 3D array instead:
array3d = cat(3, array1, array2, array3, array4);
in which case,
result = sum(array3d, 3); %sum elements across 3rd dimension
3 个评论
Guillaume
2018-11-7
Well, for us to find what the problem is attach your data as a mat file and show us the code you used.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrices and Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!