필터 지우기
필터 지우기

Using a loop to add to dataset without overwriting previous calculations

조회 수: 2 (최근 30일)
Erik J
Erik J 2017년 6월 27일
댓글: Erik J 2017년 6월 27일
I have a code which makes a number of calculations based on a set of experimental data. The output is currently several matrices, each for one of 5 experimental conditions, and each of which provides the data for that condition (e.g. Subject Number, VariableX, VariableY, etc).
General issue: I need to calculate these matrices for 50 subjects to create one big data set for each condition. To do this, I made a loop of the code. My problem is that the code then just now returns the data for the last subject. E.g., it writes over the data for the previous subject on each loop. I would like to fix it so that on each loop it just adds the data for that subject to the matrix of data for that condition. I don't know how to do this.
The further problem is that there are not an equal number of data points for each subject, so concatenating the matrix on each loop is probably not possible? I think I need to use accumarray or something similar? Any thoughts or ideas would be very helpful - I am not too experienced at this.
The code is long and messy, but here is a shortened version with the crucial elements:
subjStart = 1;
subjFinish = 54;
nSubj = 54;
for gg = subjStart:subjFinish
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Code to calculate all the variables used in the following data tables
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Create Data Tables
yy = (ones([1,length(SIcon1)])) .* gg; %vector of subject number
yy = yy'; %make column
dd = (ones([1,length(SIcon1)])) .* dist; %vector of distance criterion
dd = dd'; %make column
cc = (ones([1,length(SIcon1)])); %condition
cc = cc'; %make column
SubjDataCon1 = [yy dd cc SIcon1 SurveyNumCon1]; %data for condition 1 for each survey
yy = (ones([1,length(SIcon2)])) .* gg; %vector of subject number
yy = yy'; %make column
dd = (ones([1,length(SIcon2)])) .* dist; %vector of distance criterion
dd = dd'; %make column
cc = (ones([1,length(SIcon2)])) .*2; %condition
cc = cc'; %make column
SubjDataCon2 = [yy dd cc SIcon2 SurveyNumCon2]; %data for condition 2 for each survey
yy = (ones([1,length(SIcon3)])) .* gg; %vector of subject number
yy = yy'; %make column
dd = (ones([1,length(SIcon3)])) .* dist; %vector of distance criterion
dd = dd'; %make column
cc = (ones([1,length(SIcon3)])) .*3; %condition
cc = cc'; %make column
SubjDataCon3 = [yy dd cc SIcon3 SurveyNumCon3]; %data for condition 3 for each survey
yy = (ones([1,length(SIcon4)])) .* gg; %vector of subject number
yy = yy'; %make column
dd = (ones([1,length(SIcon4)])) .* dist; %vector of distance criterion
dd = dd'; %make column
cc = (ones([1,length(SIcon4)])) .*4; %condition
cc = cc'; %make column
SubjDataCon4 = [yy dd cc SIcon4 SurveyNumCon4]; %data for condition 4 for each survey
yy = (ones([1,length(SIcon56)])) .* gg; %vector of subject number
yy = yy'; %make column
dd = (ones([1,length(SIcon56)])) .* dist; %vector of distance criterion
dd = dd'; %make column
cc = (ones([1,length(SIcon56)])) .*56; %condition
cc = cc'; %make column
SubjDataCon56 = [yy dd cc SIcon56 SurveyNumCon56]; %data for condition 56 for each survey
clear yy;
clear dd;
clear cc;
clear SIcon1;
clear SIcon2;
clear SIcon3;
clear SIcon4;
clear SIcon56;
clear SurveyNumCon1;
clear SurveyNumCon2;
clear SurveyNumCon3;
clear SurveyNumCon4;
clear SurveyNumCon56;
end
  댓글 수: 4
Jan
Jan 2017년 6월 27일
편집: Jan 2017년 6월 27일
Replace
yy = (ones([1,length(SIcon1)])) .* gg; %vector of subject number
yy = yy'; %make column
by
yy = repmat(gg, length(SIcon1), 1);
and so on for all created variables. Then omit the pile of useless clear commands at the end. Finally your code will be much leaner and faster.

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

답변 (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