필터 지우기
필터 지우기

Finding which array a particular element is from when comparing two arrays

조회 수: 1 (최근 30일)
Hi everyone
I have a question regarding to the use of the minimum function (min()). Is there a such function that finds which element is smaller while comparing two elements from two different array (I know this can be done by using min() function), and then to find out which array is this minimum value is from.
For example, I have two arrays
a = [0 , 0 , 0 , 0.5 , 0.8 , 1];
b = [0 , 0 , 0.2 , 0.6 , 0.8 ,1.2];
Both array consisting 6 elements.
Then I used a for loop to find
for i = 1 : 1 : size(a,2)
minValue(1,i) = min(a,b);
end
Is there a way that I can find which array is the element of minValue() array is from?
For example, the third element of minValue() is taken from array 'b', is there a function to do that?
Thank you very much for your help
Tommy

채택된 답변

Andrei Bobrov
Andrei Bobrov 2014년 7월 21일
[out,idxarr] = min([a;b]);

추가 답변 (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