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