Working with a sturcture, rename top layer by a cell array

조회 수: 1 (최근 30일)
MeLearningProgramming
MeLearningProgramming 2019년 8월 1일
편집: Joel Handy 2019년 8월 5일
Dear comunity,
i'm really struggling by reaming the top layer of a stucture.
so i have a structure s
s = 1×3 struct array with fields: f1 f2 ....f12 (each field contains a datetime and a double vector)
s(1:3).field(1:12).time
s(1:3).field(1:12).data
well i do not have a problem with renaming the field part, its easy by just using dynamic variables:
newname = {'something1', 'something2', 'something3'}; j = 1;
s.(newname{j}).data gives me s.something1.data
BUT my problem starts, when i want to rename the top layer of the sturcture:
desired output would be: something1.field.time/ something1.field.data
newname{j} = s(1)
newname = 1×3 cell array with {1×1 struct} {'something2'} {'something3'}
well herby the sturcture changes just to newname{1, 1}
any hints to do better?
regards, MLP
  댓글 수: 9
MeLearningProgramming
MeLearningProgramming 2019년 8월 5일
편집: MeLearningProgramming 2019년 8월 5일
hihihi ... thanks guys.
s ist the varagout of my import funktion. Now I wanted to prepare parts of the sturcture s as an input and other parts of the structure s as output for the fitnet/narxnet.
InputVektor = [AWH.field.data, GOE.field.data];
TargetVektor = [VTB.field.data];
regards
Joel Handy
Joel Handy 2019년 8월 5일
편집: Joel Handy 2019년 8월 5일
The question is why do you want to make structure 's' a 3x1 struck array in the first place if what you really want is three independant structures.
You mentioned s is the ouput of an import function. If this function is generic and you want to break the data out differently after its been imported, simply assign the data in s to new variables.
AWH = s(1);
VTB = s(2);
GOE = s(3);

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

답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by