필터 지우기
필터 지우기

How to exclude unwanted numbers in a cell?

조회 수: 2 (최근 30일)
M G
M G 2011년 11월 11일
Hey MATLAB users,
I've got a problem! If we have: a={1,17951,1,0 ; 1,20345,1,0 ; 1,22950,1,0 ; 1,25360,1,0};
and I want to exclude 1,...,1,0 which are the same in all and as a result have cell array b as b = {17951 ; 20345 ; 22950 ; 25360}; how can I do that?
Thank you so much for your hint in advance.
Mehdi :)

채택된 답변

Wayne King
Wayne King 2011년 11월 11일
a={1,17951,1,0 ; 1,20345,1,0 ; 1,22950,1,0 ; 1,25360,1,0};
b = cellfun(@(x) x(x>1),a,'uni',0);
b(cellfun(@isempty,b))=[];
  댓글 수: 2
Wayne King
Wayne King 2011년 11월 11일
I wasn't sure if when you say always the same you mean that they are always 0 and 1.
M G
M G 2011년 11월 11일
Yes, they are always the same values. Thanks a lot.

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

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