Skip to content
Snippets Groups Projects

Fix time-domain calculations of the optimal observation filter

Merged Imported Achilles Kappis requested to merge ObsFiltTDFix into main
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -170,7 +170,7 @@ function [rSig, rSigMean, rSigMtx, rSigMtxMean, Q] = ptSrcFieldTD(sPos, rPos, fs
end
% Sum source signals at each receiver position
rSig = squeeze(sum(rSigMtx, 3));
rSig = reshape(sum(rSigMtx, 3), size(rSigMtx, 1), size(rSigMtx, 2), size(rSigMtx, 4));
% ====================================================
% Calculate output arguments
Loading