find position of a element in a matrix
이전 댓글 표시
Hi Guys,
How do I find the last element in a increasing matrix that is less than a particular number. For example if my matrix is
A=[ 1 2 3 4 6 8 9]
And I want the last number that is less than 7. So I want to find the position of 6 and not any other number like 1,2,3,4.
Thanks, NS
댓글 수: 2
Ahmed Elgamal
2016년 12월 8일
parula.
Farzana Aslam
2022년 1월 11일
how we find position from one matric to the other.
채택된 답변
추가 답변 (1개)
Honglei Chen
2011년 11월 22일
You can use find
find(A<7,1,'last')
HTH
댓글 수: 2
NS
2011년 11월 22일
Mohamed Aly
2019년 6월 3일
How about a certain element in the matrix? not necessarly the last one.
Would the same method applies for a 2D matrix?
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!