Mercurial > hg > map
comparison Copy_of_multithreshold 1.46/paradigms/paradigm_absThreshold.m @ 28:02aa9826efe0
mainly multiThreshold
author | Ray Meddis <rmeddis@essex.ac.uk> |
---|---|
date | Fri, 01 Jul 2011 12:59:47 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
27:d4a7675b0413 | 28:02aa9826efe0 |
---|---|
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 |