3D matrix summation
Show older comments
If I have the following 3D matrices. How I sum every T(:,:,1) with its following T(:,:,2) to have 3 2D matrices.
T(:,:,1) =
0 0 0 0 0 0 0 0 0 0
19 0 0 0 0 0 0 0 0 0
20 0 0 0 0 0 0 0 0 0
21 0 0 0 0 0 0 0 0 0
0 22 0 0 0 0 0 0 0 0
0 0 23 0 0 0 0 0 0 0
0 0 0 24 0 0 0 0 0 0
0 0 0 0 25 0 0 0 0 0
0 0 0 0 0 26 0 0 0 0
0 0 0 0 0 0 27 0 0 0
T(:,:,2) =
0 0 0 0 0 0 0 0 0 0
1 0 0 0 0 0 0 0 0 0
2 0 0 0 0 0 0 0 0 0
3 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0
0 0 13 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 14 0
0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0
T(:,:,1) =
0 0 0 0 0 0 0 0 0 0
19 0 0 0 0 0 0 0 0 0
20 0 0 0 0 0 0 0 0 0
21 0 0 0 0 0 0 0 0 0
0 22 0 0 0 0 0 0 0 0
0 0 23 0 0 0 0 0 0 0
0 0 0 24 0 0 0 0 0 0
0 0 0 0 25 0 0 0 0 0
0 0 0 0 0 26 0 0 0 0
0 0 0 0 0 0 27 0 0 0
T(:,:,2) =
0 0 0 0 0 0 0 0 0 0
1 0 0 0 0 0 0 0 0 0
2 0 0 0 0 0 0 0 0 0
3 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0
0 0 4 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 14 0
0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0
T(:,:,1) =
0 0 0 0 0 0 0 0 0 0
19 0 0 0 0 0 0 0 0 0
20 0 0 0 0 0 0 0 0 0
21 0 0 0 0 0 0 0 0 0
0 22 0 0 0 0 0 0 0 0
0 0 23 0 0 0 0 0 0 0
0 0 0 24 0 0 0 0 0 0
0 0 0 0 25 0 0 0 0 0
0 0 0 0 0 26 0 0 0 0
0 0 0 0 0 0 27 0 0 0
T(:,:,2) =
0 0 0 0 0 0 0 0 0 0
1 0 0 0 0 0 0 0 0 0
2 0 0 0 0 0 0 0 0 0
3 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0
0 0 4 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 5 0
0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0
How I sum every T(:,:,1) with its following T(:,:,2) to have 3 2D matrices.
3 Comments
James Tursa
on 9 May 2017
Edited: James Tursa
on 9 May 2017
Your question is unclear. Is there only one 3D array called T? Or do you have several of these arrays? Can you be more explicit in what output you want? I.e., other that simply doing T(:,:,1) + T(:,:,2) is is not clear to me what you want.
Adi Nor
on 9 May 2017
Jan
on 10 May 2017
@Mahmoud: Please answer James' question: What is wrong with T(:,:,1) + T(:,:,2)?
Accepted Answer
More Answers (0)
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!