필터 지우기
필터 지우기

finding column # that contains an integer in a matrix

조회 수: 5 (최근 30일)
mehrdad asadi
mehrdad asadi 2015년 7월 7일
댓글: mehrdad asadi 2015년 7월 7일
hi,
I want to find indices of columns of a matrix which contains a specific integer.
say magic(5), how can I find column numbers that has got '5' in it if it exists!
thanks,
Mehrdad

채택된 답변

James Tursa
James Tursa 2015년 7월 7일
편집: James Tursa 2015년 7월 7일
X = your matrix;
indices = find(any(X==5)); % columns that have the number 5 in them
  댓글 수: 4
James Tursa
James Tursa 2015년 7월 7일
indices = find(any(X==5,2)); % rows that have the number 5 in them
mehrdad asadi
mehrdad asadi 2015년 7월 7일
got it!
thanks

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

추가 답변 (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