I have data workspace 1x617struc 1 field, every row has 1x1 struc with 4 fields, How can I extract the 4th field of data for 617? thanks
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ni Putu Dewi Nurmalasari
el 10 de Nov. de 2016
Comentada: Ni Putu Dewi Nurmalasari
el 10 de Nov. de 2016
no
Respuesta aceptada
Walter Roberson
el 10 de Nov. de 2016
{YourStruct.NameOf4thField}
A cell array is needed because the 4th field is not guaranteed to be consistent size or data type.
In the case where the 4th field is a numeric row vector of consistent size, then
vertcat(YourStruct.NameOf4thField)
would give you a 617 x something numeric array
4 comentarios
Más respuestas (0)
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!