필터 지우기
필터 지우기

Find other element in row of a matrix

조회 수: 1 (최근 30일)
Tanmoy
Tanmoy 2015년 5월 17일
편집: Stephen23 2015년 5월 17일
I have a matrix A = [ 3 4 ; 1 3; 5 6] I need to find the value beside 4. I tried find() function which returns (row, column) indices of 4, I need to calculate 3 from that indices. Is there any direct way to tell 3 is the neighbor element of 4?

채택된 답변

Stephen23
Stephen23 2015년 5월 17일
편집: Stephen23 2015년 5월 17일
Use the row output of find
>> A = [ 3 4 ; 1 3; 5 6];
>> [r,c] = find(A==4);
>> A(r,1)
ans =
3

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by