how can i put multiple matrices into a struct?
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mio Rinnovo
el 2 de Nov. de 2019
Comentada: Mio Rinnovo
el 2 de Nov. de 2019
Can add multiple matrices into one struct?
0 comentarios
Respuesta aceptada
David Hill
el 2 de Nov. de 2019
A and B are maxtrixes of any size.
m=struct('matrix',{A,B});
struct field is 'matrix', so m(1).matrix == A and m(2).matrix == B.
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!