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

Fixed error in resising the observation filter to apply in all sound field realisations

parent f495bca5
No related branches found
No related tags found
1 merge request!3Update to v0.2.3
......@@ -92,7 +92,7 @@ function [estPerMic, est, err, estMean, errMean] = obsFiltEstTD(m, O, e)
% ====================================================
% Replicate observation filters if only one set is provided
if size(O, 4) ~= size(m, 3)
O = repmat(O, size(O, 1), size(O, 2), size(O, 3), size(m, 3));
O = repmat(O, 1, 1, 1, size(m, 3));
end
% ====================================================
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment