To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

The primary repository for this project is hosted at git://github.com/rmeddis/MAP.git .
This repository is a read-only copy which is updated automatically every hour.

Statistics Download as Zip
| Branch: | Revision:

root / multiThreshold 1.46 / paradigms / paradigm_OHIOrand.m @ 38:c2204b18f4a2

History | View | Annotate | Download (1.01 KB)

1 38:c2204b18f4a2 rmeddis
function paradigm_OHIOrand(handles)
2
global stimulusParameters experiment betweenRuns
3
4
paradigmBase(handles) % default
5
6
betweenRuns.variableName1='OHIOnTones';
7
betweenRuns.variableList1=...
8
[2 4 8 12];
9
betweenRuns.variableName2='targetDuration';
10
betweenRuns.variableList2= 0.01;
11
12
experiment.maskerInUse=0;
13
14
stimulusParameters.OHIOnTones=betweenRuns.variableList1;
15
stimulusParameters.targetDuration=betweenRuns.variableList2;
16
stimulusParameters.targetLevel=stimulusParameters.WRVstartValues(1);
17
18
19
stimulusParameters.WRVstartValues=30;
20
experiment.singleIntervalMaxTrials=20;
21
22
23
% forced choice window interval
24
stimulusParameters.AFCsilenceDuration=0.5;
25
26
27
% instructions to user
28
%   single interval up/down no cue
29
stimulusParameters.instructions{1}=[{'YES if you hear the added click'}, { }, { 'NO if not (or you are uncertain'}];
30
%   single interval up/down with cue
31
stimulusParameters.instructions{2}=[{'count how many distinct clicks you hear'},{'ignore the tones'},{' '},...
32
    {'The clicks must be **clearly distinct** to count'}];