If I have a row vector,what command allows me to find the indexes that exceed a certain value that I want as a threshold. For example:
A =
0.1222
0.1350
0.1759
0.1110
0.1015
0.2599
0.1465
I would like in output the indices of the value grater or equal than 0.123, for example.

 채택된 답변

Mischa Kim
Mischa Kim 2014년 2월 25일
편집: Mischa Kim 2014년 2월 25일

1 개 추천

Use
ind = find(A >= 0.123)

댓글 수: 1

Francesco
Francesco 2014년 2월 25일
And If I want to extract some the numeric value of an 19x2 double array (for example) according to the number of the ind variable how can I do?

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Thomas
Thomas 2014년 2월 25일
편집: Thomas 2014년 2월 25일

0 개 추천

[r,c]=find(A>=0.123)

카테고리

도움말 센터File Exchange에서 Language Fundamentals에 대해 자세히 알아보기

태그

질문:

2014년 2월 25일

댓글:

2014년 2월 25일

Community Treasure Hunt

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

Start Hunting!

Translated by