Fill struct with an array
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Zarak Khan
el 21 de Nov. de 2017
Respondida: Walter Roberson
el 21 de Nov. de 2017
Hello,
I am facing difficulty in understanding on how to fill the struct within a for loop
for v=[-0.05, -0.03, 0.03, 0.05]
a=2+v;
s=struct('A',[],'B',[],'C',[],'D')
end
now what i want is the code to store individual values of 'a' in the struct means like 1.95 1.97 2.03 2.05 separately in the struct, instead of just the final value of 'a'
help would be great appreciated.
0 comentarios
Respuesta aceptada
Walter Roberson
el 21 de Nov. de 2017
v=[-0.05, -0.03, 0.03, 0.05];
temp = num2cell(2+v);
names = {'A', 'B', 'C', 'D'};
S = cell2struct(temp, names, 2);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Structures en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!