필터 지우기
필터 지우기

How do i delete an exact cell from a cell-matrix?

조회 수: 2 (최근 30일)
Christoph Thale
Christoph Thale 2016년 9월 7일
댓글: Mischa Kim 2016년 9월 7일
Hi,
i have a 1x13 cell-txt-matrix which is read out of an excelsheet with
[num, txt, raw] = xlsread(___)
txt looks like that:
[test] [1.1.111] [2.2.2222] [empty cell] [3.3.3333]
the [ ] stands just for the cell. There are no brackets in it.
I am able to identify the coordinates from the cells i want to delete. The problem is, I cant delete these founded cells. I want to have this:
[1.1.111] [2.2.2222] [3.3.3333]
I tried to solve this problem with the approach:
txt{...} = []
The receiving:
[[]] [1.1.111] [2.2.2222] [[]] [3.3.3333]
I hope you understand my problem and have some satisfying advices.
Thanks a lot.

채택된 답변

Mischa Kim
Mischa Kim 2016년 9월 7일
Christoph, simply use round brackets instead
a = {1,2,3};
a(2) = []
  댓글 수: 3
Noam Weissman
Noam Weissman 2016년 9월 7일
편집: Noam Weissman 2016년 9월 7일
a(2) is a cell with size 1x1.
a{2} is the content of the above cell.
You want to delete the cell itself, not only its content.
Mischa Kim
Mischa Kim 2016년 9월 7일
I agree, this is not obvious.
There is a difference between removing a cell element and setting a cell element to "empty". Since the curly brackets are used to assign cell values, this approach is also used to assign an empty cell value. Therefore, there needs to be a different mechanism to remove a cell element. That is where the round brackets come in in.
Also note, that for matrices you use the same approach:
a = [1,2,3];
a(2) = []
a =
1 3

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

추가 답변 (1개)

Noam Weissman
Noam Weissman 2016년 9월 7일
편집: Noam Weissman 2016년 9월 7일
txt = txt([2 3 5]);
% or
txt([1 4 ])=[];
  댓글 수: 1
Christoph Thale
Christoph Thale 2016년 9월 7일
편집: Christoph Thale 2016년 9월 7일
Haha, of course i can solve it with your first attempt for this example but the cells i wont have in my cell-matrix are variable.
Thank you, the round brackets work fine.

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by