How to copy a structure without a field?

16 visualizaciones (últimos 30 días)
Mr M.
Mr M. el 16 de Oct. de 2018
Editada: Stephen23 el 16 de Oct. de 2018
I have p with field1, filed2, filed3 (p(1).field1, p(2).filed1, p(1).filed2, etc.). I want to make a copy: q = p, but copy only filed1 and filed3 for example. How to do that?

Respuesta aceptada

Stephen23
Stephen23 el 16 de Oct. de 2018
Editada: Stephen23 el 16 de Oct. de 2018
Use rmfield:
q = rmfield(p,'field2')

Más respuestas (0)

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!

Translated by