How to get row index of certain values in a vector
조회 수: 3 (최근 30일)
이전 댓글 표시
I am looking for a way to extract the row index of certain values from a vector.
I tried with
[ ~ , index ] = max(obj.GanttM(:,2)==i);
This only gives me one index but the number i appears several times. How can I extract all row indeces with one command?
Thank you.
댓글 수: 0
채택된 답변
Image Analyst
2013년 12월 28일
Use find() instead:
rows = find(obj.GanttM(:,2)==i);
댓글 수: 1
Image Analyst
2018년 7월 29일
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!