필터 지우기
필터 지우기

Function not taking in input correctly from output of another function - help!

조회 수: 1 (최근 30일)
Hi all,
I've got two functions in my code. The output of the first function is a structure of this format:
mystructure.nameofstruct = 'my_array';
mystructure.valueofstruct = myarray;
mystructure.outputofstruct = 1;
The output of mystructure.valueofstruct is
mytitle001: 0
mytitle002: 0.56
... etc up until
mytitle040: 0.23
The second function takes in the output of the first one as input, however it seems to be doing it wrong, as the bit my structure.valueofstruct only has the last one "mytitle040: 0.23". I'm not quite sure why, as I would've thought it would take in the whole thing? Any ideas would be appreciated. Thanks.
Also, for more information, mystructure.valueofstruct is also another structure.

채택된 답변

Walter Roberson
Walter Roberson 2013년 3월 30일
Please assign the output of the first function to a temporary variable, and then display fieldnames() of the valueofstruct field of that variable. Pass the temporary variable to the second function. Then, inside the second function, display fieldnames() of the valueofstruct field of the received input.
  댓글 수: 5
Walter Roberson
Walter Roberson 2013년 3월 30일
편집: Walter Roberson 2013년 3월 30일
Why are you using a "for" loop to construct "my_new_name" as being the same thing each time?
Also, when you are using
mystructure.valueofstruct = myarray;
that is changing valueofstruct to be only what is in myarray, rather than changing valueofstruct to have an additional field. You should use
mystructure.valueofstruct.(mynewname) = number;

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

추가 답변 (0개)

카테고리

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