Given a vector a=[1,2, 3.2, 4, 5] and an element x=3 In vector a, how to find the exact entry which is bigger than x?

前端 未结 2 1795
感情败类
感情败类 2020-12-11 17:08

Given a vector a=[1,2, 3.2, 4, 5] and an element x=3 In vector a, how to find the exact entry which is bigger than x?

2条回答
  •  孤城傲影
    2020-12-11 18:00

    I'm not sure what you mean by "exact" entry. This will give you indices of all the values greater than x:

    indices = find(a > x);
    

    Assuming a is already sorted, this will give you the index of the first one (i.e. the smallest value greater than x):

    index = find(a > x,1);
    

提交回复
热议问题