%expInfo.MAT.color = [177,213,57; 234,35,93]; % define dot color
% saturated & muted
% expInfo.MAT.color = [174,205,96; 203,117,143];
% expInfo.MAT.color1 = [174,205,96; 203,117,143]; % define dot color
% expInfo.MAT.color2 = [177,213,57; 234,35,93]; % green first, then red
expInfo.MAT.color=[192,255,128;255,128,149];
expInfo.MAT.color1=[192,255,128;255,128,149];% low luminance % green first, then red (H:350, S:40%, V:100%);% define dot color (H:350, S:80%, V:100%; green: H:90)
expInfo.MAT.color2=[128,255,0;255,0,43];% high luminance
% % light & dark
% expInfo.MAT.color = [222,235,151; 241,147,186];
% expInfo.MAT.color1 = [222,235,151; 241,147,186]; % define dot color
% expInfo.MAT.color2 = [125,155,64; 160,26,67];
%
expInfo.MAT.coherence=expInfo.MAT.percAtt2H;% define dot movement (coherence)
% 1. How many attribute dimensions (i.e. state manipulation)? [block-wise to avoid 'meta-four state']
% 2. Which attributes to be chosen? Same in each block?
% 3. Which target in each trial?
% 4. Which option of the attribute is winning?
%% decide cueing state order (1/2/3/4) & higher probability choice (within attribute)
expInfo.blockLengthDim=8;% amount of consecutive trials belonging to the same state dimension block; needs to be a multiple of 4
expInfo.blockAmount=(expInfo.trialsPerAtt*expInfo.numOfAtt*expInfo.numOrders)/expInfo.blockLengthDim;% amount of blocks (i.e. determined by total trial count and block length)
expInfo.blocksPerOrd=expInfo.blockAmount/expInfo.numOrders;% amount of blocks per state dimension
expInfo.StateOrder=NaN(expInfo.blockAmount,expInfo.blockLengthDim);% prelim. matrix for state dimension order
expInfo.AttCues=cell(expInfo.blockAmount,expInfo.blockLengthDim);% prelim. cell struc for attribute cues
expInfo.targetAtt=NaN(expInfo.blockAmount,expInfo.blockLengthDim);% prelim. matrix for target attribute
expInfo.targetOption=NaN(expInfo.blockAmount,expInfo.blockLengthDim);% prelim. matrix for target option
expInfo.HighProbChoice=cell(expInfo.blockAmount,expInfo.blockLengthDim);% prelim. cell struc for winning options