function [gp,gfc] = baumgartner2014gradientextraction(mp,fc,c2)
%BAUMGARTNER2014GRADIENTEXTRACTION - Extraction of positive spectral gradients
% Usage: [gp,gfc] = baumgartner2014gradientextraction(mp,fc)
%
% Input parameters:
% mp : spectral magnitude profile in dB
% fc : center frequencies
%
% Output parameters:
% gp : positive spectral gradient profile
% gfc : center frequencies of gradient profile
%
% BAUMGARTNER2014GRADIENTEXTRACTION(...) is a spectral cue extractor
% inspired by functionality of dorsal cochlear nucleus in cats.
%
% References:
% R. Baumgartner, P. Majdak, and B. Laback. Modeling sound-source
% localization in sagittal planes for human listeners. The Journal of the
% Acoustical Society of America, 136(2):791-802, 2014.
%
%
% Url: http://amtoolbox.sourceforge.net/data/amt-test/htdocs/amt-0.9.8/doc/modelstages/baumgartner2014gradientextraction.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
%% Parameter Settings
if not(exist('c2','var'))
c2 = 1; % inhibitory coupling between type II mpd type IV neurons
end
c4 = 1; % coupling between AN and type IV neuron
dilatation = 1; % of tonotopical 1-ERB-spacing between type IV mpd II neurons
erb = audfiltbw(fc);
%% Calculations
Nb = size(mp,1); % # auditory bands
dgpt2 = round(mean(erb(2:end)./diff(fc))*dilatation); % tonotopical distance between type IV mpd II neurons
gp = zeros(Nb-dgpt2,size(mp,2),size(mp,3),size(mp,4),size(mp,5)); % type IV output
for b = 1:Nb-dgpt2
gp(b,:,:,:,:) = c4 * mp(b+dgpt2,:,:,:,:) - c2 * mp(b,:,:,:,:);
end
gp = (gp + c2*abs(gp))/2; %disp('only rising edges')
% gp(gp<0) = nmp;
gfc = fc(dgpt2+1:end);
% if nargout > 1
end