%DEMO_BAUMGARTNER2020 Demo for externalization model from Baumgartner and Majdak (2020)
%
% DEMO_BAUMGARTNER2020(flag) demonstrates how to apply the model in
% order to estimate perceived externalization deterioration following
% spectral distortions based on the example of using non-individualized
% HRTFs for binaural headphone reproduction.
%
% See also: baumgartner2020 exp_baumgartner2020
%
% Url: http://amtoolbox.sourceforge.net/data/amt-test/htdocs/amt-0.10.0/doc/demos/demo_baumgartner2020.php
% Copyright (C) 2009-2020 Piotr Majdak and the AMT team.
% This file is part of Auditory Modeling Toolbox (AMT) version 0.10.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
%% Settings
subjNum = 1; % choose target listener by number (1 through 23)
lat = 0; % lateral target angle in degrees
%% Get listener's data
data = data_baumgartner2017looming('hrtf'); % load HRTFs of listener pool
Nsubj = length(data);
%% Run model to get externalization scores for every HRTF
template = data(subjNum).Obj;
E = nan(Nsubj,1);
for ids = 1:Nsubj
target = data(ids).Obj;
E(ids) = baumgartner2020(target,template,'lat',lat);
end
%% Plot results
figure;
bar(100*E)
set(gca,'XTick',1:Nsubj,'XTickLabel',{data.id})
ylabel('Degree of externalization (%)')