필터 지우기
필터 지우기

Looking for source of minimum value in 3d array

조회 수: 2 (최근 30일)
Fidya
Fidya 2023년 3월 31일
답변: Meet 2023년 4월 3일
Hello, everyone
I would like to ask for a code to look for which array I get my minimum values from
I have this code
Dt=cat(3,Dt1,Dt2,Dt3,Dt4,Dt5); DtA=min(Dt,[],3)
I would like to get which Dt(n) i get the DtA(x,y) from
Thank you in advance
  댓글 수: 1
Torsten
Torsten 2023년 3월 31일
From the documentation:
[M,I] = min(___) also returns the index into the operating dimension that corresponds to the first occurrence of the minimum value of A.

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

채택된 답변

Meet
Meet 2023년 4월 3일
Assuming that the arrays Dt1,Dt2,Dt3,Dt4,Dt5 are of 1 or 2 dimensions, then you can easily find which Dt(n) has the minimum value simply by using the function as [DtA, I] = min(Dt,[],3]. Here, the matrix I will contain the indices into the operating dimension (in your case i.e. 3) in which the first occurence of the minimum value of Dt was found.
But if the arrays Dt1,Dt2,Dt3,Dt4,Dt5 are of 3 or more dimensions then you will need to find some different way to get the required indices as the function min will not provide it directly.
Please refer the documentation of min for more details.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by