필터 지우기
필터 지우기

Remove single cell from matrix

조회 수: 3 (최근 30일)
Thallon Pitchure
Thallon Pitchure 2020년 9월 22일
댓글: Thallon Pitchure 2020년 9월 22일
Hello!
I was wonderif if it is possible to remove a single cell from a matrix without having to resize it or remove an entire row or column.
I am specifically trying to remove A(2,2) from a 3x3 matrix. I know this is possible in a cell array can the same be done with a normal matrix.
I was thinking the output of removing the cell would be NaN but I cannot seem to get it to work without getting an error.
>> b(2,2) = []
A null assignment can have only one non-colon index.
>> b{2,2} = []
Cell contents assignment to a non-cell array object.
> This was not a cell array format when I attempted this method.

채택된 답변

madhan ravi
madhan ravi 2020년 9월 22일
편집: madhan ravi 2020년 9월 22일
”Remove single cell from matrix“
b(2, 2) = nan; % since matrix cannot have holes replace it with nans
  댓글 수: 1
Thallon Pitchure
Thallon Pitchure 2020년 9월 22일
Thank you for your time and help!!

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by