How to add to values of a field?

조회 수: 3 (최근 30일)
Thibedi Malotana
Thibedi Malotana 2020년 5월 29일
댓글: Cris LaPierre 2020년 5월 29일
How can I add values to a field without overwriting the previous entry? In a for loop

답변 (1개)

Cris LaPierre
Cris LaPierre 2020년 5월 29일
편집: Cris LaPierre 2020년 5월 29일
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
Thibedi Malotana
Thibedi Malotana 2020년 5월 29일
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 2020년 5월 29일
Structures can have many levels. Look at this doc page for more.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by