Max()-function and multiple dimensions

조회 수: 3 (최근 30일)
Mauri
Mauri 2014년 8월 9일
댓글: Steven Lord 2016년 10월 25일
Hello,
I'm trying to maximize a matrix that is of several dimensions. I also need to know the locations of the maximized value, which is actually the problem. How do I go about doing this in the most simple way?
So, for example, x=rand(10,10,10,10,10); Of course, by simple max(max(max(max(x) I could get the maximal value of x. How about the location? (for example the maximum could be located in x(1,2,3,2,4))
Cheers,
M
  댓글 수: 1
Image Analyst
Image Analyst 2014년 8월 10일
I think you're getting only answers on how to locate the max value because no one knows what you want to do to maximize the array. What is the array dependent on such that changing those parameters will maximize the array? And what does it mean to maximize an array, as opposed to a single value. Do you want to vary some parameter, say lambda or whatever you want to call it, such that the sum, or mean, of all the values in the array is maximized?

댓글을 달려면 로그인하십시오.

채택된 답변

Ahmet Cecen
Ahmet Cecen 2014년 8월 9일
편집: Ahmet Cecen 2014년 8월 9일
Do:
[C I]=max(x(:));
now C is the maximum value, I is the index of where it is, so that x(I) is C.
If you want the 5D coordinates explicitly, then read ind2sub.
  댓글 수: 3
Shivanand Venkanna Sheshappanavar
Shivanand Venkanna Sheshappanavar 2016년 10월 25일
what if the matrix is a 2D matrix ? We need maxval, rowindex and columnindex
Steven Lord
Steven Lord 2016년 10월 25일
The solution Ahmet and Jan posted works fine for 2-D matrices, 5-D arrays, etc.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2014년 8월 9일
편집: Azzi Abdelmalek 2014년 8월 10일
Edit
A=rand(10,10,10,10,10);
[max_value,idx]=max(A(:));
q=['[' sprintf('x%d,',1:ndims(A))];
q(end)=']';
eval([q '=ind2sub(size(A),idx)'])
eval(['x=' q])
  댓글 수: 1
Jan
Jan 2014년 8월 10일
편집: Jan 2014년 8월 10일
This is cruel. There is no reason to go the indirection over the evil eval. eval is prone to bugs, hard to debug, disables the JIT acceleration and is a severe drawback for efficient programming.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by