You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Checking how this was done in the Matlab version of the Reporting Engine,
it seems that and additional file is exported for LLOQ with the suffix LLOQ as indicated below
% Check and add LLOQ to Data
LLOQcsvfile = replace(csvfile, '.csv', '_LLOQ.csv');
if ~isfile(LLOQcsvfile)
Data.LLOQ = [];
Data.LLOQUnit = [];
else
tLLOQ = readtable(LLOQcsvfile, 'Encoding', 'UTF-8');
% outputs
Data.LLOQ = tLLOQ{1,1};
Data.LLOQUnit = tLLOQ{1,2};
end
Checking how this was done in the Matlab version of the Reporting Engine,
it seems that and additional file is exported for LLOQ with the suffix LLOQ as indicated below
@Yuri05
The text was updated successfully, but these errors were encountered: