% 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