필터 지우기
필터 지우기

How Can I delete specific elements in a matrix and transfer them to other

조회 수: 1 (최근 30일)
How Can I delete specific elements in a matrix(rectangle matrix) and transfer them to other variable?
For example:
A=[1 2 3 4;
1 8 9 10;
11 12 20 6] ;
Suppose I want to delete 10 and 6, with out specifying element wise is there any way that i can delete the elements? Since my matrix is huge(24x15 elements) I can't specify element wise. I can only specify which row and which column.
Is there any technique that works efficiently?

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 1월 26일
편집: Azzi Abdelmalek 2014년 1월 26일
A=[1 2 3 4;
1 8 9 10;
11 12 20 6] ;
You can't delete any element from your matrix. You can delete an entire column or an entire row.
You can find the position of your number 6 and 10 in your matrix
[ii,jj]=find(ismember(A,[6 10]))
a 24x15 array is not a huge matrix!
  댓글 수: 5
Azzi Abdelmalek
Azzi Abdelmalek 2014년 1월 26일
편집: Azzi Abdelmalek 2014년 1월 26일
A=[1 2 3 4;
1 8 9 10;
11 12 20 6] ;
idx=ismember(A,[6 10]) % logical indices
A(idx)=0
Divya
Divya 2014년 1월 26일
편집: Divya 2014년 1월 26일
Thank you sir

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

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