How to examine the parameters of stimuli that were run
Navigate to the directory where the stimuli were recorded
Load the stimuli into matlab with
z = load('stims.mat');You can examine the parameters of each stimulus with
N = numStims(z.saveScript) % number of stims in the script
for i=1:N,
mystim = get(z.saveScript,i);
p = getparameters(mystim),
end