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_absThreshold.m @ 0:f233164f4c86

History | View | Annotate | Download (1003 Bytes)

1
function paradigm_absThreshold(handles)
2
global stimulusParameters experiment betweenRuns
3

    
4
paradigm_training(handles) % default
5

    
6
betweenRuns.variableName1='targetFrequency';
7
betweenRuns.variableList1=[250 500 1000 2000 4000 8000 ];
8
betweenRuns.variableName2='targetDuration';
9
betweenRuns.variableList2= 0.25;
10

    
11
stimulusParameters.targetFrequency=betweenRuns.variableList1;
12
stimulusParameters.targetDuration=betweenRuns.variableList2;
13
stimulusParameters.targetLevel=stimulusParameters.WRVstartValues(1);
14

    
15
stimulusParameters.WRVstartValues=30;
16

    
17

    
18
% forced choice window interval
19
stimulusParameters.AFCsilenceDuration=0.5;
20

    
21

    
22
% instructions to user
23
%   single interval up/down no cue
24
stimulusParameters.instructions{1}=[{'YES if you hear the added click'}, { }, { 'NO if not (or you are uncertain'}];
25
%   single interval up/down with cue
26
stimulusParameters.instructions{2}=[{'count how many distinct clicks you hear'},{'ignore the tones'},{' '},...
27
    {'The clicks must be **clearly distinct** to count'}];
28

    
29