function [ si ] = langendijk2002comp( target,template,varargin )
%LANGENDIJK2002COMP Comparison process according to Langendijk et al. (2002)
% Usage: [ si ] = langendijk2002comp( target,template )
% [ si ] = langendijk2002comp( target,template,s,do,flags )
%
% Input parameters:
% target : modified DFT for one target position and both ears
% template : internal DTF-templates for all positions and both ears
%
% Output parameters:
% si : monaural similarity indices (one for each template entry)
%
% LANGENDIJK2002COMP compares the spectral features of an internal spectral
% representation of a target sound with an internal template. As spectral
% similarity criterion either the crosscorrelation coefficient ('xcorr')
% or a mapped version of the standard deviation of inter-spectral
% differences ('std') can be used.
%
% The function accepts the following optional parameters:
%
% 's', s Standard deviation of transforming Gaussian function
% (only for comparison process: std).
% The default value is 2.
%
% 'do',do Differential order. The default value is 0.
%
% 'std' Use the 'std' comparison process. This is the default.
%
% 'xcorr' Use the 'xcorr' comparison process.
%
% See also: langendijk2002
%
% Url: http://amtoolbox.sourceforge.net/data/amt-test/htdocs/amt-0.9.8/doc/modelstages/langendijk2002comp.php
% Copyright (C) 2009-2015 Piotr Majdak and Peter L. Søndergaard.
% This file is part of AMToolbox version 0.9.8
%
% 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, OEAW Acoustical Research Institute
definput.import={'langendijk2002comp'};
[flags,kv]=ltfatarghelper({'s','do'},definput,varargin);
%% Optional differentiation
if kv.do ~= 0
target = diff(target,kv.do);
template = diff(template,kv.do);
end
%% Comparison process
if flags.do_std
idiff = repmat(target,[1,size(template,2),1]) - template;
sigma = squeeze(std(idiff,1));
si = exp(-0.5 * (sigma./kv.s).^2) ./ (sqrt(2*pi) .* kv.s); % normpdf
elseif flags.do_xcorr
r = zeros(size(template,2),size(template,3));
for ch = 1:size(template,3)
for ii = 1:size(template,2)
tmp = corrcoef(target(:,ch),template(:,ii,ch));
r(ii,ch) = tmp(2);
end
end
si = (r+1)/2;
end
end