-
leprob001 authored
New features: + If one plot changes, all other opened plots will be redrawn to instantly see the changes that have been made. + Added first version of the TOA window. + Added menu entry for Time of arrival editing window in the main window.
leprob001 authoredNew features: + If one plot changes, all other opened plots will be redrawn to instantly see the changes that have been made. + Added first version of the TOA window. + Added menu entry for Time of arrival editing window in the main window.
soundSourcesLoaded.m 459 B
function [soundSourcesAreLoaded] = soundSourcesLoaded()
%SOUNDSOURCESLOADED Checks if a sound source file has been loaded.
% Returns true if sound sources are available.
global artoaDataInput;
%% Setup return variable
soundSourcesAreLoaded = false;
%% Check if required field is available
if ~isfield(artoaDataInput, 'soundsources') && ~isempty(artoaDataInput.soundsources)
return;
end
%% Update return variables
soundSourcesAreLoaded = true;
end