Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dynare
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dynare
dynare
Commits
3cb16af5
Commit
3cb16af5
authored
Nov 21, 2013
by
Johannes Pfeifer
Browse files
Options
Downloads
Patches
Plain Diff
Continue harmonizing figure titles in GSA
parent
b4b78dbb
No related branches found
No related tags found
1 merge request
!539
Continue harmonizing figure titles in GSA
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
matlab/gsa/stab_map_.m
+13
-13
13 additions, 13 deletions
matlab/gsa/stab_map_.m
matlab/gsa/stab_map_2.m
+6
-2
6 additions, 2 deletions
matlab/gsa/stab_map_2.m
with
19 additions
and
15 deletions
matlab/gsa/stab_map_.m
+
13
−
13
View file @
3cb16af5
...
@@ -468,23 +468,23 @@ if pprior
...
@@ -468,23 +468,23 @@ if pprior
aunstablename
=
[
aname
,
'_unst'
];
aunstabletitle
=
'Prior StabMap: Parameter driving explosiveness of solution'
;
aunstablename
=
[
aname
,
'_unst'
];
aunstabletitle
=
'Prior StabMap: Parameter driving explosiveness of solution'
;
awronguniname
=
[
aname
,
'_wrong'
];
awrongunititle
=
'Prior StabMap: Parameter driving inability to find solution'
;
awronguniname
=
[
aname
,
'_wrong'
];
awrongunititle
=
'Prior StabMap: Parameter driving inability to find solution'
;
% bivariate
% bivariate
auname
=
'prior_unacceptable'
;
autitle
=
'Prior Unacceptable'
;
auname
=
'prior_unacceptable'
;
autitle
=
'Prior
non-existence of unique stable solution (
Unacceptable
)
'
;
aunstname
=
'prior_unstable'
;
aunsttitle
=
'Prior
Unstable
'
;
aunstname
=
'prior_unstable'
;
aunsttitle
=
'Prior
explosiveness of solution
'
;
aindname
=
'prior_indeterm'
;
aindtitle
=
'Prior Indeterminacy'
;
aindname
=
'prior_indeterm'
;
aindtitle
=
'Prior Indeterminacy'
;
awrongname
=
'prior_wrong'
;
awrongtitle
=
'Prior
No S
olution
Found
'
;
awrongname
=
'prior_wrong'
;
awrongtitle
=
'Prior
inability to find s
olution'
;
asname
=
'prior_stable'
;
astitle
=
'Prior
Stable
'
;
asname
=
'prior_stable'
;
astitle
=
'Prior
unique Stable Saddle-Path
'
;
else
else
% univariate
% univariate
aname
=
'mc_stab'
;
atitle
=
'
P
osterior StabMap: Parameter driving non-existence of unique stable solution (Unacceptable)'
;
aname
=
'mc_stab'
;
atitle
=
'
MC (around p
osterior
mode)
StabMap: Parameter driving non-existence of unique stable solution (Unacceptable)'
;
aindetname
=
[
aname
,
'_indet'
];
aindettitle
=
'
P
osterior StabMap: Parameter driving indeterminacy'
;
aindetname
=
[
aname
,
'_indet'
];
aindettitle
=
'
MC (around p
osterior
mode)
StabMap: Parameter driving indeterminacy'
;
aunstablename
=
[
aname
,
'_unst'
];
aunstabletitle
=
'
P
osterior StabMap: Parameter driving explosiveness of solution'
;
aunstablename
=
[
aname
,
'_unst'
];
aunstabletitle
=
'
MC (around p
osterior
mode)
StabMap: Parameter driving explosiveness of solution'
;
awronguniname
=
[
aname
,
'_wrong'
];
awrongunititle
=
'
P
osterior StabMap: Parameter driving inability to find solution'
;
awronguniname
=
[
aname
,
'_wrong'
];
awrongunititle
=
'
MC (around p
osterior
mode)
StabMap: Parameter driving inability to find solution'
;
% bivariate
% bivariate
auname
=
'mc_unacceptable'
;
autitle
=
'
Posterior
Unacceptable'
;
auname
=
'mc_unacceptable'
;
autitle
=
'
MC (around posterior mode) non-existence of unique stable solution (
Unacceptable
)
'
;
aunstname
=
'mc_unstable'
;
aunsttitle
=
'
Posterior Unstable
'
;
aunstname
=
'mc_unstable'
;
aunsttitle
=
'
MC (around posterior mode) explosiveness of solution
'
;
aindname
=
'mc_indeterm'
;
aindtitle
=
'
P
osterior Indeterminacy'
;
aindname
=
'mc_indeterm'
;
aindtitle
=
'
MC (around p
osterior
mode)
Indeterminacy'
;
awrongname
=
'mc_wrong'
;
awrongtitle
=
'
Posterior No Solution Found
'
;
awrongname
=
'mc_wrong'
;
awrongtitle
=
'
MC (around posterior mode) inability to find solution
'
;
asname
=
'mc_stable'
;
astitle
=
'
Posterior Stable
'
;
asname
=
'mc_stable'
;
astitle
=
'
MC (around posterior mode) Unique Stable Saddle-Path
'
;
end
end
delete
([
OutputDirectoryName
,
filesep
,
fname_
,
'_'
,
aname
,
'_*.*'
]);
delete
([
OutputDirectoryName
,
filesep
,
fname_
,
'_'
,
aname
,
'_*.*'
]);
%delete([OutputDirectoryName,filesep,fname_,'_',aname,'_SA_*.*']);
%delete([OutputDirectoryName,filesep,fname_,'_',aname,'_SA_*.*']);
...
...
This diff is collapsed.
Click to expand it.
matlab/gsa/stab_map_2.m
+
6
−
2
View file @
3cb16af5
...
@@ -86,10 +86,14 @@ for j=1:npar,
...
@@ -86,10 +86,14 @@ for j=1:npar,
fprintf
(
1
,
'%20s: corrcoef = %7.3f\n'
,
tmp_name
,
c0
(
i2
(
jx
),
j
));
fprintf
(
1
,
'%20s: corrcoef = %7.3f\n'
,
tmp_name
,
c0
(
i2
(
jx
),
j
));
if
~
options_
.
nograph
,
if
~
options_
.
nograph
,
if
strcmp
(
fnam
(
1
:
2
),
'mc'
)
type
=
'MC (around posterior mode) StabMap: '
;
elseif
strcmp
(
fnam
(
1
:
5
),
'prior'
)
type
=
'Prior StabMap: '
;
end
if
mod
(
j2
,
12
)
==
1
,
if
mod
(
j2
,
12
)
==
1
,
ifig
=
ifig
+
1
;
ifig
=
ifig
+
1
;
hh
=
dyn_figure
(
options_
,
'name'
,[
'Correlations in the '
,
figtitle
,
' sample '
,
num2str
(
ifig
)]);
hh
=
dyn_figure
(
options_
,
'name'
,[
type
,
'Correlations in the '
,
figtitle
,
' sample '
,
num2str
(
ifig
)]);
end
end
subplot
(
3
,
4
,
j2
-
(
ifig
-
1
)
*
12
)
subplot
(
3
,
4
,
j2
-
(
ifig
-
1
)
*
12
)
% bar(c0(i2,j)),
% bar(c0(i2,j)),
...
...
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