How to examine the parameters of stimuli that were run

    1. Navigate to the directory where the stimuli were recorded

    2. Load the stimuli into matlab with
      z = load('stims.mat');

    3. 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