How to find the indices of minimum value in a 4D matrix?
    조회 수: 9 (최근 30일)
  
       이전 댓글 표시
    
I have a matrix genertared using 4 for loops, The generated matrix is of (3*11*11*11) in size. I need to find the lowest value and indiceswhere the lowest value is present. I tried to use the find command but as far as I understand it wokrs for 2D (x*y) matrices (I might be wrong). How can I find the lowest value and the indices of the lowest value for the (3*11*11*11) matrix? 
댓글 수: 0
채택된 답변
  Matt J
      
      
 2023년 6월 20일
        [lowestValue,locmin]=min(A(:))
[i,j,k,l]=ind2sub(size(A), locmin); %indices of min
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

