I am trying to generate a series of "auditory spikes" from a sampled signal in MATLAB, and the method I have so far implemented is slow. Too slow.
The spikes are generated a la section II, B of http://patrec.cs.tu-dortmund.de/pubs/papers/Plinge2010-RNF.pdf : detect the zero crossings and sum the (square-root compressed) positive parts of the signal between each pair. This gives the height of each spike. Their positions are found by identifying the sample with the maximum value between each pair of zero crossings.
I thought of using accumarray(...) for this, which led me to the idea of generating a matrix where each column represents a pair of zero crossings (a spike) and each row a sample. Each column is then filled in with ones between the corresponding pair of zero crossings.
The current implementation fills these columns in from the actual data vector, so that we do not have to use accumarray afterwards.
Current implementation:
function out = audspike(data)
% Find the indices of the zero crossings. Two types of zero crossing:
% * Exact, samples where data == 0
% * Change, where data(i) .* data(i+1) < 0; that is, data changes sign
% between two samples. In this implementation i+1 is returned as the
% index of the zero crossing.
zExact = (data == 0);
zChange = logical([0; data(1:end-1) .* data(2:end) < 0]);
zeroInds = find(zExact | zChange);
% Vector of the difference between each zero crossing index
z=[zeroInds(1)-1; diff(zeroInds)];
% Find the "number of zeros" it takes to move from the first sample to the
% a given zero crossing
nzeros=cumsum(z);
% If the first sample is positive, we cannot generate a spike for the first
% pair of zero crossings as this represents part of the signal that is
% negative; therefore, skip the first zero crossing and begin pairing from
% the second
if data(1) > 0
nzeros = nzeros(2:2:end);
nones = z(3:2:end)+1;
else
nzeros = nzeros(1:2:end);
nones = z(2:2:end)+1;
end
% Allocate sparse array for result
G = spalloc(length(data), length(nzeros), sum(nones));
% Loop through pairs of zero crossings. Each pair gets a column in the
% resultant matrix. The number of rows of the matrix is the number of
% samples. G(n, ii) ~= 0 indicates that sample n belongs to pair ii
for ii = 1:min(length(nzeros), length(nones))
sampleInd = nzeros(ii)+1:nzeros(ii)+nones(ii)-1;
G(sampleInd, ii) = data(sampleInd);
end
% Sum the square root-compressed positive parts of signal between each zero
% crossing
height = sum(sqrt(G), 2);
% Find the peak over average position
[~, pos] = max(G, [], 2);
out = zeros(size(data));
out(pos) = height;
end
As I said, this is slow, and it only works for one channel at a time. The slow part is (unsurprisingly) the loop. If I change matrix G's allocation to the standard zeros(...) instead of a sparse array, the slow part then becomes the sum(...) and max(...) calculations, for obvious reasons.
How can I do this more efficiently? I am not averse to writing a MEX function, if that's what it'll take.