Discard elements from structure array
조회 수: 1 (최근 30일)
이전 댓글 표시
I have a structure with one field. I try to remove specific elements using i.e.:
trial(5).Hs_m = []
but the element remains in the structure, just having a value of "[]". Is there a way to remove it?
댓글 수: 0
답변 (1개)
Massimo Zanetti
2017년 2월 25일
편집: Massimo Zanetti
2017년 2월 25일
Here is an example:
S.field1 = 'hello';
S.field2 = 456;
S
S =
struct with fields:
field1: 'hello'
field2: 456
Now remove one field:
S = rmfield(S,'field1')
S =
struct with fields:
field2: 456
댓글 수: 2
Massimo Zanetti
2017년 2월 25일
편집: Massimo Zanetti
2017년 2월 25일
So, why mentioning the field? In this case just remove the structure entry. Following your example, you can remove the 5-th entry with
trial(5) = []
regardless of the field(s).
참고 항목
카테고리
Help Center 및 File Exchange에서 Structures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!