convert array in a struct
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
elisa ewin
el 20 de Mzo. de 2017
Editada: Greg Dionne
el 20 de Mzo. de 2017
Hi,
I want to trasform the array in the file attached in a struct; I have used cell2struct but it doesn't run: can you help me?
0 comentarios
Respuesta aceptada
Greg Dionne
el 20 de Mzo. de 2017
Editada: Greg Dionne
el 20 de Mzo. de 2017
You didn't give us the fieldnames you wanted. So I'm going to guess you want them as 'thing1', 'thing2', 'thing3', etc. and assign the name in a loop. You can substitute your desired fieldname instead of these.
for i=1:length(Cluster_split)
myValue = Cluster_split{i};
myFieldname = ['thing' num2str(i)];
myStruct.(myFieldname) = myValue;
end
You can now inspect the structure:
myStruct.thing1
myStruct.thing23
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!