Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Construct a 2D matrix whose each element is the maximum among the receptive elements of multiple 2D matrices constructed by a 3D matrix.

1 vue (au cours des 30 derniers jours)
Ahmad
Ahmad le 22 Fév 2016
Clôturé : MATLAB Answer Bot le 20 Août 2021
The best way to explain what I'm trying to do is with an example. Say I have the following 2*2*3 matrix.
A(:,:,1) =
10 20
20 30
A(:,:,2) =
100 5
10 50
A(:,:,3) =
170 10
100 12
I want to construct a new 2D matrix (call is Amax) whose every (ith,jth) element is the maximum among the 2D matrices' elements of the original 3D matrix. For the above example, the new matrix Amax should be
Amax =
170 20
100 50
Also, I need to know which 3rd dimension of the original 3D matrix the elements in Amax came from. So I need a second 2D matrix (call is INDEX) whose elements are the 3rd dimension of the original 3D matrix. For the above example, the new matrix INDEX should be
INDEX =
3 1
3 2
I don't what to use for loops, as the size of my 3D matrix is large. I need to vectorize the above operation.
thank you in advanced Ahmad

Réponses (1)

Roger Stafford
Roger Stafford le 22 Fév 2016
Modifié(e) : Roger Stafford le 22 Fév 2016
[B,I] = max(A,[],3);
B gives the 2D matrix of maximums along the third dimension and I gives the corresponding 3rd dimension indices. Read
http://www.mathworks.com/help/matlab/ref/max.html

Cette question est clôturée.

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by