extract field from a structure problem
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Yu Li
el 15 de Nov. de 2018
Hi:
I need to extract the field 'P' from a structure, to form a new structure with all the value of P. but I the answer in link below:
does not work, it only keeps the last one of the structure.
my command is tmp=DP1(:).P
Thanks!
Yu
1 comentario
Respuesta aceptada
Bruno Luong
el 15 de Nov. de 2018
depending on the content, if scalar
tmp=[DP1.P]
or if not
tmp={DP1.P}
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!