How to index two vectors according to some condition
1 次查看(过去 30 天)
显示 更早的评论
Hello friends, Let’s say I have two vectors with the same length
x=[ 1 -3 0 -7 5 7 0]
y=[ 9 -4 8 -9 4 1 8].
I want to find out the index (with respect to the two vectors) where both vectors (simultaneously) have closest negative value to zero. In this case, the index will be indx=2 (x=-3 && y=-4). In case if there is no negative values in both vectors like
x=[ 1 -8 0 8 -5 7 0]
y=[ 9 5 0 0 0 1 8]
I want to find where x has largest negative value and y has zero value. In this case indx=5 (x=-5 && y=0)
Hope this question is clear and I’ll appreciate your help.
4 个评论
Stephen23
2018-6-1
"I said largest negative value"
Generally in English the "largest negative value" would be considered to mean the negative value with the largest magnitude, which is how both Paolo and I understood it.
采纳的回答
the cyclist
2018-6-1
I think this does what you want
% Case 1
x=[ 1 -3 0 -7 5 7 0];
y=[ 9 -4 8 -9 4 1 8];
% % Case 2
% x=[ 1 -8 0 8 -5 7 0];
% y=[ 9 5 0 0 0 1 8];
pairDistance = abs(x+y);
bothNegative = (x<0) & (y<0);
xNegAndYZero = (x<0) & (y==0);
if any(bothNegative)
[~,idx] = min(pairDistance./bothNegative);
else
[~,idx] = min(pairDistance./xNegAndYZero);
end
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!