Taking only the first element

조회 수: 74 (최근 30일)
Shehab Tarek
Shehab Tarek 2020년 5월 26일
댓글: Tommy 2020년 5월 26일
I have matrix =[0,2 ;0,25 ;0,25;0,3] And I am using find function To get the index of every element The error occur when the search value is 0,25 it give an output [2,3] And I want to take only the first element of the output array Or the second element
  댓글 수: 5
Shehab Tarek
Shehab Tarek 2020년 5월 26일
Thank you 🙏
Tommy
Tommy 2020년 5월 26일
To get only the nth index:
matrix = [0.2 ;0.25 ;0.25;0.3];
n = 2;
allIdx = find(matrix==0.25,n);
nIdx = allIdx(end);

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by