function data = data_best2005
%DATA_BEST2005 Listener averages of absolute polar angle error and SCC
% Usage: data = data_best2005
%
% Output parameters:
% data : structure containing the data
%
% DATA_BEST2005 returns listener averages of absolute lateral and polar
% angle error and SCCs from Best et al. (2005): Fig.5, Fig.10, and Tab.2
%
% The data struct comprises the following fields:
%
% 'qe' quadrant error rates
%
% 'ale' absolute lateral angle error
%
% 'ape' absolute polar angle error
%
% 'seape' standard error of absolute polar angle error
%
% 'meta' condition labels corresponding to data entries
%
%
%
% References:
% V. Best, S. Carlile, C. Jin, and A. van Schaik. The role of high
% frequencies in speech localization. J. Acoust. Soc. Am., 118:353--363,
% 2005.
%
%
% Url: http://amtoolbox.org/amt-1.2.0/doc/data/data_best2005.php
% Copyright (C) 2009-2022 Piotr Majdak, Clara Hollomey, and the AMT team.
% This file is part of Auditory Modeling Toolbox (AMT) version 1.2.0
%
% This program is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program. If not, see <http://www.gnu.org/licenses/>.
% AUTHOR: Robert Baumgartner, Roberto Barumerli
% Mean quadrant error rates from Tab.2 (Exp. I) and Tab. 4 (Exp. II)
data.qe = [3.0,mean([8.4,6.7]),12.0,13.8,16.4];
% Mean absolute polar angle errors from Fig.5b (Exp. I) and Fig.10b (Exp. II)
data.ape = [21,30,38,42.5,46];
data.seape = ones(1,5);
% Mean absolute lateral angle errors from Fig.5a (Exp. I) and Fig.10a (Exp. II)
data.ale = [7.87, 9.63, 9.70, 9.67, 8.60];
data.meta = {'BB noise','BB speech','-20dB','-40dB','-60dB'};
end