Trial objects

Trial objects are optional. You only need to add them if you want to change a property from default. Note for some properties you can also change the default values themselves using pb_prefs at the MATLAB command line, which may be more convenient.

An object of type trial provides some options and record properties for a whole trial. In trial definition tables you can add columns setting properties for one trial object per trial definition (row). [Or in the coding method: Make a trial object using function trialObject, set properties, and input it along with element objects to addTrial.]

Trial timing

By default each trial ends whenever no elements in it are left running or scheduled to start. You can optionally add further end conditions in trial object property end. The next trial to run then starts after an interval which you can change in trial object property preTrialInterval (default = 0.75 sec). In this mode trial start and end times are flexible, which is okay for most experiments.

You can also set trials to start at fixed times relative to experiment sync in a past trial using trial object property start field t_sync, e.g. in a scanner experiment.

Either way, trial repetition and order is typically set in your trial list. For unusual cases you can set it directly in trial definitions instead.

Input properties

preTrialInterval

Default: 0.75 sec

preTrialInterval sets (minimum) time from previous trial end to this trial start (sec). By default the pre-trial interval is just a blank screen. You can change its background color using preTrialBackColor below. You also can show a static visual element in it by setting the element’s start field preTrial = <cd>true<cd>. The most common example is a cross object for a fixation cross. See also record properties preTrialInterval_r and preTrialHeadroom below.

PsychBench always needs some time in each pre-trial interval to close the previous trial and prepare this one. How much time depends on what elements you run and on your system. If preTrialInterval is too short, PsychBench will automatically extend the interval and the experiment time course will bump forward. This is okay in most experiments.

preTrialBackColor

Default: same as trial

A 1×3 RGB vector with numbers between 0–1 setting background color for the pre-trial interval. Default is same as trial, which you can set in backColor below.

backColor

Default: same as experiment

A 1×3 RGB vector with numbers between 0–1 setting background color for the trial. Default is same as experiment, which you can set in experiment object property backColor.​ You can override this for any part of the trial using a backColor element.

start

Default: trial starts flexibly whenever previous trial ends + pre-trial interval

For use in scanner experiments. By default a trial starts flexibly whenever the previous trial ends + pre-trial interval (above). Alternatively if you use property start, the trial starts at a fixed time relative to experiment sync in a past trial. To do this, first use an element in one trial to sync the experiment at a trigger it registers using element property syncExperiment. Then for any number of trials that run subsequently, use trial start to set start times relative to that sync. start is a further struct with one field start.t_sync containing a 1×2 vector <cd>[t0 dt]<cd>. This works conditionally, so you can set it the same for all subsequent trials:
  1. <cd>t0<cd> = start time relative to sync (sec) if this is the first trial that runs after the sync
  2. <cd>dt<cd> = start time increment (sec) if this is a later trial

Setting trial start.t_sync does three things:

  • It prevents drift in trial start times that would occur from accumulation of small deviations across trial starts and ends.
  • If the previous trial ends early then this trial will wait to start on time.
  • If the previous trial would run late then it will end so this trial's pre-trial interval starts on time. This also applies to this trial if it's the last in a sequence of trials with start.t_sync set. i.e. the last trial in an experiment or in a block of fixed time trials can still end this way, as if a similar fixed time trial were waiting after it.

Use trial start.t_sync in experiments where you need precise timing across trials relative to a sync, e.g. scanner experiments that run multiple or all trials from a sync. (Note if you re-sync in each trial, you don’t need to use trial start.t_sync. Just set timing of elements from the sync in their trial using element properties start/end.t_sync.)

Notes

  • You can sync once for the whole experiment or re-sync any number of times. A trial with start.t_sync set goes off the most recent sync.
  • If a trial has start.t_sync set but the experiment is not synced, it defaults to starting flexibly. This happens if no element has synced the experiment yet. It also happens if the experiment was synced but then a trial with start.t_sync not set (flexible timing) ran, which cancels the sync.
  • If you set trial start.t_sync, it’s important that pre-trial interval is long enough for the processing PsychBench needs to do between trials. If it isn’t, the trial will still start late. Use preTrialInterval above if needed.

Examples

See scanner demos in <><PsychBench folder><>/docs/demos.

end

Default: trial ends when no elements are left running or scheduled to start

You can add further end conditions for the whole trial here. Usage is the same as element property end: this is a further struct with possible fields setting different conditions for the trial to end (e.g. time, duration, response from subject, etc.), or a row struct array for multiple end conditions. You can use the same fields as for element end. If an end condition for the trial occurs, all running elements end and the next trial's pre-trial interval begins.

Example

trial.end.response = true;
trial.end.and = <cdsm>"response == 2"<cdsm>

→ end all elements and the trial if the subject inputs a response = 2.

withStaircase

Default: automatic if trial contains staircased elements and the experiment contains only one staircase

Usually you can leave withStaircase at default, including in most staircase experiments with only one staircase.

If you’re running an experiment with more than one staircase, for each trial that contains staircased elements, you must set withStaircase to specify which staircase to use for the trial.

You can also set withStaircase for a trial if it doesn’t contain staircased elements but you want to associate it with a staircase such that it will be skipped if it would run after the staircase ends. The trial will not actually be in the staircase, e.g. the staircase will not update its value or threshold estimate after the trial.

withStaircase is a string pointing to a staircase object by its variable name and possibly index (visual method: in its object heading / coding method: in the experiment script). e.g. <cds>"staircase"<cds>, <cds>"staircases(2)"<cds>, etc. Each trial can only be in (or associated with) one staircase. Tip: If you have an index in a numeric variable you can use it in an <cds>"x"<cds> string (but not an <cds>'x'<cds> string) like this: <cds>"pictures("<cds><cd> + n + <cd><cds>")"<cds>. See link above for staircase objects.

Input properties all objects have

report
info

Record properties

PsychBench uses record properties to record information during experiments. You can't set record properties but you can see them in experiment results using input property report.

n_def
n

n_def is trial definition number/label. This is before any order and repetition if you use a trial list. By default PsychBench automatically numbers trial definitions 1, 2, 3 ... in the order they are defined. You can also use custom numbers or strings (visual method: in a column before objects with no headings / coding method: in an input to addTrial).

n is trial number during the experiment.

preTrialInterval_r
preTrialHeadroom

preTrialInterval_r records time from previous trial end to this trial start (sec). Note this property records the actual interval during the experiment—to set interval, use input property preTrialInterval above.

preTrialHeadroom is time left in the set pre-trial interval when PsychBench completed the processing it needed to do between the trials (sec). < 0 means preTrialInterval was set too short and the interval extended.

startTime
endTime
duration

startTime and endTime record start/end times relative to trial 1 start (sec). These = offset of inter-trial interval at trial start and onset of inter-trial interval at trial end, both at screen refresh. If the trial starts/ends with visual stimuli, these also = those stimulus onset/offset times.

duration records end time − start time.

frameRates
frameIntervals

frameRates is a row vector recording instantaneous frame rates across all frames in the trial, indexed by frame number. At each frame, the frame rate is calculated as 1 / frame interval (frame/sec).

frameIntervals is the corresponding row vector of all frame durations (sec).

frameRates can be used to get a sense of the actual frame rates achieved during the trial, which nominally = screen refresh rate (screen object record properties refreshRate, refreshInterval) but can be lower when frames are dropped due to processing load. Additionally, both properties can be used with element record properties n_startFrame and n_endFrame—for example, you can check if a dropped frame delayed an element start by checking for decreased rate or increased interval at the frame before n_startFrame. For more information on frames see Timing precision.