Skip to content
Snippets Groups Projects
Commit 4c188d0e authored by leprob001's avatar leprob001
Browse files

Removed all rows where "use" equals to false from tracking parameter validation.

parent fb46ba49
No related branches found
No related tags found
No related merge requests found
307
\ No newline at end of file
308
\ No newline at end of file
......@@ -6,8 +6,10 @@ function [] = run(~, ~)
global artoaWorkspace artoaGui;
%% Validate soundsource table input
usedSoundsourceCombinations = find(artoaWorkspace.trackParameter.soundsourceCombinations.use);
soundsourceCombinationsToValidate = artoaWorkspace.trackParameter.soundsourceCombinations(usedSoundsourceCombinations, :);
[success, message] = artoa.controller.track.parameter.validateCombinationsInput( ...
artoaWorkspace.trackParameter.soundsourceCombinations ...
soundsourceCombinationsToValidate ...
);
if ~success
errordlg(message, 'Input error');
......
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