Newer
Older
function [involvedSoundsources] = getSoundsourcesWithAppliedToa()
%GETINVOLVEDSOUNDSOURCES Summary of this function goes here
% Detailed explanation goes here
global artoaWorkspace;
involvedSoundsourceNames = fieldnames(artoaWorkspace.filteredSoundsources);
involvedSoundsources = struct();
for i = 1:length(involvedSoundsourceNames)
if artoa.soundsources.hasAppliedToa(involvedSoundsourceNames{i}, artoaWorkspace.toaData.soundSource)
leprob001
committed
extracted = artoa.soundsources.extract( ...
{involvedSoundsourceNames{i}}, ...
artoaWorkspace.filteredSoundsources ...
);
involvedSoundsources.(involvedSoundsourceNames{i}) = extracted{1};