필터 지우기
필터 지우기

I want to find in which row the minimum element is

조회 수: 15 (최근 30일)
Giannakis Stoukas
Giannakis Stoukas 2015년 4월 11일
답변: Star Strider 2015년 4월 11일
I have a vector and i wand to find in which row i have the lowest number

채택된 답변

Star Strider
Star Strider 2015년 4월 11일
Use the min function with two outputs:
[Vmin,Idxmin] = max(V);
If ‘V’ is your column vector, ‘Vmin’ will be the minimum value, and ‘Idxmin’ will be the index of the first occurrence of the minimum. If you have more than one value of the minimum, use the find function:
Idxmin = find(V == min(V));
It will return the indexes (row numbers) of all values of the minimum.

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by