How to delete particular row from struct array?
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi
I want to know is there any passible method to delete the entire data related to particular column value in struct array.
2 comentarios
Respuesta aceptada
David Sanchez
el 9 de Mayo de 2013
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 comentarios
Más respuestas (1)
Azzi Abdelmalek
el 9 de Mayo de 2013
s1=struct('a',num2cell(1:10),'b',num2cell(11:20),'c',num2cell(21:30))
label=9
s1(label)=[]
0 comentarios
Ver también
Categorías
Más información sobre Structures en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!