Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MR_spectroS
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AG_Henning
MR_spectroS
Commits
2c537558
Commit
2c537558
authored
4 years ago
by
Tamas Borbath
Browse files
Options
Downloads
Patches
Plain Diff
Plotting NaNs in plotSimulationResults
parent
801169b7
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
createTestData/plotSimulationResults.m
+3
-2
3 additions, 2 deletions
createTestData/plotSimulationResults.m
with
3 additions
and
2 deletions
createTestData/plotSimulationResults.m
+
3
−
2
View file @
2c537558
...
...
@@ -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'
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment