필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

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

조회 수: 1 (최근 30일)
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

답변 (1개)

Roger Stafford
Roger Stafford 2016년 2월 22일
편집: Roger Stafford 2016년 2월 22일
[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

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by