Get both values and indices
조회 수: 2 (최근 30일)
이전 댓글 표시
I am trying to get the indices and values from a vector based on a condition. I used find for that but the values it returning are logical values. How can I get actual values? An example is:
X = [4; 5; 1; 0; -7; 3; 0; 1; -4];
[row, ~, val] = find(X>0 & X<6)
I want val to have 4 5 1 3 1
댓글 수: 0
채택된 답변
Dyuman Joshi
2022년 12월 3일
X = [4; 5; 1; 0; -7; 3; 0; 1; -4];
row = find(X>0 & X<6)
val = X(row)
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!