10 lines
244 B
Matlab
10 lines
244 B
Matlab
function output = directdir(obj)
|
|
%DATADIR Get the directory where the model directly stored its output data
|
|
% directdir(PP)
|
|
%
|
|
% See also pricklypear/datadir, pricklypear/modeldir
|
|
|
|
output = fullfile(obj.basedir, 'data', '_direct');
|
|
|
|
end
|