matlab code to find the next highest integer
이전 댓글 표시
suppose i have a array a=[1 2 3 4 8 10 24] i have a random value for ex r=6;
i have to find the next highest integer to 6 in the given array i.e the output should be 8.
kindly help me with a matlab code
답변 (2개)
KSSV
2016년 12월 5일
a=[1 2 3 4 8 10 24] ;
b = a(a>6) ;
iwant = b(1)
Jan
2016년 12월 5일
a = [1 2 3 4 8 10 24];
r = 6;
b = a(find(a > 6, 1));
댓글 수: 2
shariq khan
2018년 12월 13일
This is more precise
Walter Roberson
2018년 12월 13일
slightly yes as it will not error if there were no matches .
카테고리
도움말 센터 및 File Exchange에서 Whos에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!