How to transform struct to array?
22 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Kiryl Zhaliazka
el 23 de Mzo. de 2022
Respondida: Voss
el 23 de Mzo. de 2022
I have struct with 96 fields, each field contein 1 number, how I can make array that will be contain one column and 96 rows, each row is a number from each field. Thank you.
0 comentarios
Respuesta aceptada
Voss
el 23 de Mzo. de 2022
S = struct('field_1',1,'field_2',2,'field_3',3)
A = struct2array(S).'
0 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!