How to delete particular row from struct array?
조회 수: 17 (최근 30일)
이전 댓글 표시
Hi
I want to know is there any passible method to delete the entire data related to particular column value in struct array.
채택된 답변
David Sanchez
2013년 5월 9일
Hi, I think you are looking for this:
s=rmfield(s,field)
example of use:
s.a=1;
s.b=2;
s.c=3;
>> s
s =
a: 1
b: 2
c: 3
s=rmfield(s,'a');
>> s
s =
b: 2
c: 3
댓글 수: 2
추가 답변 (1개)
Azzi Abdelmalek
2013년 5월 9일
s1=struct('a',num2cell(1:10),'b',num2cell(11:20),'c',num2cell(21:30))
label=9
s1(label)=[]
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Structures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!