How to get arg min of an N-dimensional Matrix ?
조회 수: 33 (최근 30일)
이전 댓글 표시
Hi, i'm having an image of size[280,307,191] and i want to get the argmin of it,Any help?
댓글 수: 0
채택된 답변
James Tursa
2013년 4월 15일
편집: James Tursa
2013년 4월 15일
[m n] = min(M(:));
[x y z] = ind2sub(size(M),n);
x, y, z will be the indexes (i.e., argmin) of the minimum value of your 3D array M.
댓글 수: 2
Jan
2013년 4월 16일
The documentation of min explains this exhaustively already. Type this in Matlab's command window:
help min
doc min
and read it.
추가 답변 (3개)
Cedric
2013년 4월 15일
How do you define argmin? If it is the global min, you can get it as follows:
min(M(:))
where M is your 3D array.
댓글 수: 4
Andrei Bobrov
2016년 7월 13일
편집: Andrei Bobrov
2016년 7월 13일
Hi Sreeda M A! Example:
M = randi(400,280,307,191);
Sean de Wolski
2013년 4월 15일
Or:
min(min(min(M)))
댓글 수: 2
Ties Hendrickx
2019년 4월 29일
Nope, this will return the minimum value and not the index of the minimum value
Steven Lord
2019년 4월 30일
If you're using release R2019a or later, you probably want to call min with the 'all' dimension input and the 'linear' flag.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!