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).
%DEMO_JELFS2011 Binaural speech intelligibility advantage
%
% DEMO_JELFS2011 will plot the output of the
% jelfs2011 binaural speech intelligibility advantage model for a
% target azimuth angle of 0 deg. The masker position will move over a
% full circle in the horizontal plane, and the output is visualized on
% a polar plot. The KEMAR HRTF dataset is used.
%
%
% See also: jelfs2011, culling2005_bmld
%
% Url: http://amtoolbox.sourceforge.net/amt-0.10.0/doc/demos/demo_jelfs2011.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/>.
target_azim=0;
database='kemar';
step = 5;
n_op = 360/step+1;
op = zeros(n_op,3);
angles = (0:step:360)'*pi/180;
for direction_num = 1:n_op
op(direction_num,:) = jelfs2011({target_azim, database}, ...
{(direction_num-1)*step, database});
end
polar([angles angles angles], op);