Discard elements from structure array
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Massimo Zanetti
el 25 de Feb. de 2017
Editada: Massimo Zanetti
el 25 de Feb. de 2017
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 comentarios
Massimo Zanetti
el 25 de Feb. de 2017
Editada: Massimo Zanetti
el 25 de Feb. de 2017
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).
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!