Skip to content
Snippets Groups Projects
load.m 275 B
function [datafile] = load()
%LOAD Loads a test soso file into memory.

[currentDirectory, ~, ~] = fileparts(mfilename('fullpath'));

dataFileName = fullfile(currentDirectory, '..', 'testdata', 'input', 'HAFOS.soso');


datafile = artoa.load.soundsources(dataFileName);

end