How to add to values of a field?

3 visualizaciones (últimos 30 días)
Thibedi Malotana
Thibedi Malotana el 29 de Mayo de 2020
Comentada: Cris LaPierre el 29 de Mayo de 2020
How can I add values to a field without overwriting the previous entry? In a for loop

Respuestas (1)

Cris LaPierre
Cris LaPierre el 29 de Mayo de 2020
Editada: Cris LaPierre el 29 de Mayo de 2020
Use your loop counter variable to specify where to add the value.
By field do you mean in a structure?
for a = 1:3
b.field1(a) = val;
end
  3 comentarios
Thibedi Malotana
Thibedi Malotana el 29 de Mayo de 2020
Struct1 = struct('Cm',[])
for n = 1:1:2
t = dir('*Filename*.xlsx')
t = t(n).name;
a = size(t);
b = a(1,2) - 5;
t = char(extractBetween(t,20,b));
t = struct(t,[])
Struct1.Cm = t
end
When the code is finished the only value in Cm is the last t for n = 2
Cris LaPierre
Cris LaPierre el 29 de Mayo de 2020
Structures can have many levels. Look at this doc page for more.

Iniciar sesión para comentar.

Categorías

Más información sobre Logical 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!

Translated by