Find the index value of first and last element in the vector ?
조회 수: 25 (최근 30일)
이전 댓글 표시
Find the index value of first and last element in the vector ?
command
댓글 수: 0
답변 (2개)
Walter Roberson
2013년 12월 1일
index_of_first = 1;
index_of_last = length(YourVector);
If you mean an element with a particular value, then
index_of_first = find(YourVector == TheValue, 1, 'first');
index_of_last = find(YourVector == TheValue, 1, 'last');
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Structures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!