Skip to content
Snippets Groups Projects
Commit 9e794980 authored by leprob001's avatar leprob001
Browse files

The unfilteredA variable in artoaWorkspace now contains the offset columns as well.

parent 8a802d3a
No related branches found
No related tags found
No related merge requests found
136
\ No newline at end of file
137
\ No newline at end of file
function [A] = filterCalculationTables(pA, pOffsets)
function [A, unfilteredA] = filterCalculationTables(pA, pOffsets)
%FILTERCALCULATIONMATRICES Summary of this function goes here
% Detailed explanation goes here
......@@ -32,6 +32,8 @@ for i = 1:length(tmpNames)
end
clear tmpNames;
unfilteredA = A;
%% Process soundsources and float
varNames = pOffsets.Properties.RowNames;
......
......@@ -29,7 +29,7 @@ function [A, B, X, unfilteredA, unfilteredB] = solve(pRfb, pSoundsources, pTrack
);
%% Optimize matrices for calculation
[A] = artoa.offsets.filterCalculationTables( ...
[A, unfilteredA] = artoa.offsets.filterCalculationTables( ...
unfilteredA, ...
pOffsetsParameter.offsets ...
);
......
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