Skip to content
Snippets Groups Projects
Commit e0aba269 authored by Achilles Kappis's avatar Achilles Kappis
Browse files

Fix bug in obsFiltEstTD.m that would screw dimension when there is only one source present

parent 8e4c0cef
No related branches found
No related tags found
1 merge request!4Fix time-domain calculations of the optimal observation filter
......@@ -111,7 +111,7 @@ function [estPerMic, est, err, estMean, errMean] = obsFiltEstTD(m, O, e)
% Sum the estimates of each monitoring microphone to get the estimated virtual microphone signals
if nargout > 1
est = squeeze(sum(estPerMic, 3));
est = reshape(sum(estPerMic, 3), size(estPerMic, 1), size(estPerMic, 2), size(estPerMic, 4));
end
% Calculate the error signals
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment