This documentation page applies to an outdated major AMT version. We show it for archival purposes only.
Click here for the documentation menu and here to download the latest AMT (1.6.0).
function data = data_goupell2010(varargin)
%DATA_GOUPELL2010 Localization performance in sagittal planes
% Usage: data = data_goupell2010(condition)
% data = data_goupell2010(lat, dlat, condition)
%
% Listener-specific experimental data from Goupell et al. (2010) testing
% localization performance in sagittal planes for various numbers of
% channels of a GET vocoder.
%
% The *condition* flag may be one of:
%
% 'BB' Broadband DTFs (baseline condition)
% 'CL' Click trains with unlimited number of channels
% 'N24' 24 vocoder channels
% 'N18' 18 vocoder channels
% 'N12' 12 vocoder channels
% 'N9' 9 vocoder channels
% 'N6' 6 vocoder channels
% 'N3' 3 vocoder channels
%
% Output parameters:
% data.id : listener ID
% data.mtx : experimental data matrix conaining 9 colums
% col 1: target azimuth
% col 2: target elevation
% col 3: response azimuth
% col 4: response elevation
% col 5: lateral angle of target
% col 6: polar angle of target
% col 7: lateral angle of response
% col 8: polar angle of response
%
% References goupell2010numchan
% AUTHOR: Robert Baumgartner
%% Check input options
% Define input flags
definput.flags.condition = {'BB','CL','N24','N18','N12','N9','N6','N3'};
% Parse input options
[flags,kv] = ltfatarghelper({},definput,varargin);
%% Extract data
if not(exist([mfilename '.mat'],'file'))
disp(['Downloading ' mfilename ' from http://www.kfs.oeaw.ac.at/']);
targetfn = fullfile(amtbasepath,'humandata',[mfilename '.mat']);
sourcefn = ['http://www.kfs.oeaw.ac.at/research/experimental_audiology/projects/amt/' mfilename '.mat'];
urlwrite(sourcefn,targetfn);
end
load(mfilename)
C = find(ismember(condition,flags.condition));
for ll = 1:length(subject)
data(ll).mtx = subject(ll).expData{C}(:,1:8);
data(ll).id = subject(ll).id;
end