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

[currentDirectory, ~, ~] = fileparts(mfilename('fullpath'));
dataFileName = fullfile(currentDirectory, '..', 'testdata', 'input', '0272.rfb');
%dataFileName = fullfile(currentDirectory, '..', 'data', 'rf5331.rfb');


datafile = artoa.load.rfb(dataFileName);

end