Find indexes according to a value in array

조회 수: 2 (최근 30일)
Gabriel Melendez
Gabriel Melendez 2020년 3월 30일
편집: the cyclist 2020년 3월 30일
Hello everybody,
I am trying to find array indexes in which a certain value is found.
For example, I have the next array with 10 elements.
A = [2 4 6 8 10 12 14 16 18 20]
Now, I have a value x = 11.
x = 11
According to x value, I would like to get the indexes 5 and 6 corresponding to the array values 10 and 12, in which 11 is found.
I tried to solve it as next:
find((A>x) & (A<=x))
However, it returns an empty vector.
I hope you can help me.
Thank you very much!

채택된 답변

the cyclist
the cyclist 2020년 3월 30일
편집: the cyclist 2020년 3월 30일
Dare I say obviously, A can't obey both the conditions simultaneously. You need to find the indices separately.
[find(A<=x,1,'last') find(A>x,1,'first')]

추가 답변 (0개)

카테고리

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

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by