Skip to content
Snippets Groups Projects
Commit 2c537558 authored by Tamas Borbath's avatar Tamas Borbath
Browse files

Plotting NaNs in plotSimulationResults

parent 801169b7
No related branches found
No related tags found
No related merge requests found
......@@ -4,8 +4,8 @@ function plotSimulationResults()
exportFolder = {'11 Simulations'};
pathNameExport = 'ProFit test data';
pathBaseExportFiles = pathToDataFolder(pathNameExport, exportFolder);
pathBaseExportFiles = pathBaseExportFiles(1:end-1);
pathBaseExportFiles = [pathBaseExportFiles ' - Weighted Cost Fun R3 0.25scale m_15 trunc\'];
% pathBaseExportFiles = pathBaseExportFiles(1:end-1);
% pathBaseExportFiles = [pathBaseExportFiles ' - Weighted Cost Fun R3 0.25scale m_15 trunc\'];
% pathBaseExportFiles = [pathBaseExportFiles ' - Weighted Cost Fun R3 0.25scale m_15 sinebell\'];
% pathBaseExportFiles = [pathBaseExportFiles ' - Weighted Cost Fun R3 0.25scale m_15 matched\'];
% pathBaseExportFiles = [pathBaseExportFiles ' - R1 0.25scale m_15 trunc\'];
......@@ -433,6 +433,7 @@ function [allSimulMetConc, allLCModelMetConc, allProFitMetConc, allLCModelMetCon
display([paramKeyword, ' NANs:', num2str(sum(isnan(allLCModelMetConcDev)))]);
meanConcDevLCModel = mean(allLCModelMetConcDev,'omitnan');
stdConcDevLCModel = std(allLCModelMetConcDev,'omitnan');
display([paramKeyword, ' NANs ProFit:', num2str(sum(isnan(allProFitMetConcDev)))]);
meanConcDevProFit = mean(allProFitMetConcDev,'omitnan');
stdConcDevProFit = std(allProFitMetConcDev,'omitnan');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment