I wanna create vector of structures
17 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Why
"for i=1:10 vec(i)=struct('a',i, 'b',20-i, 'c',i+3); end"
does not work?
How can I correct it to create vectors of structures?
1 comentario
Respuestas (2)
Azzi Abdelmalek
el 31 de Jul. de 2015
Editada: Azzi Abdelmalek
el 31 de Jul. de 2015
ii=1:10
vec=struct('a',num2cell(ii),'b',num2cell(20-ii),'c',num2cell(ii+3))
0 comentarios
Muthu Annamalai
el 31 de Jul. de 2015
You may also try, in addition to Azzi's code,
ii=1:10;
vec = arrayfun ( @(i) struct('a',i, 'b',20-i, 'c',i+3), ii );
depending on your stylistic preference.
0 comentarios
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!