How can I find the threshold for a structure array?

조회 수: 2 (최근 30일)
Fabio Castro
Fabio Castro 2016년 4월 6일
댓글: Fabio Castro 2016년 4월 8일
Hello all,
I want to find the threshold for various trials, contained in the structure "Target_Tr.". I have previously calculated the max value (X and Y) of the baseline. I would like to have as result a structure array containing the values after the threshold. I wrote this code, but the system gives me back the error message "Undefined operator '>' for input arguments of type 'struct'. What am I doing wrong?
Thank you very much
clear a
for a = 1:length(fields_trials)
Threshold_Target_X.(['a_' int2str(a)])=find([Target_Tr.(fields_trials{a})]>Target_Max_Y);
end

채택된 답변

Orion
Orion 2016년 4월 6일
Hi,
Without knowing what your data looks like, it's hard to answer.
I tried this code and it works :
Target_Tr.s1 = rand(10,1);
Target_Tr.s2 = rand(10,1);
fields_trials = fieldnames(Target_Tr);
Target_Max_Y = 0.6;
clear a
for a = 1:length(fields_trials)
Threshold_Target_X.(['a_' int2str(a)]) = find([Target_Tr.(fields_trials{a})]>Target_Max_Y);
end
Does your structure Target has only "direct" subfields ( Target_Tr.s1 , Target_Tr.s2,...) ?
Because if you have somethig like
Target_Tr.s3.s1 = rand(10,1); % subfield of field
then the error message makes sense.
  댓글 수: 3
Orion
Orion 2016년 4월 6일
That's really weird, because I just retried my code and it works.
If you first do a clear all, does this code work ?
Fabio Castro
Fabio Castro 2016년 4월 8일
Hello.
I don't know why, but if I close and re start the matlab, then it works.
Thank you very much for the help!

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by