Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Selma Malmberg
dynare
Commits
60efdd49
Commit
60efdd49
authored
Jan 25, 2018
by
Johannes Pfeifer
Committed by
Stéphane Adjemian
Jan 26, 2018
Browse files
disp_steady_state.m: Use character array to make sure alignment in display of steady state is right
parent
a418a042
Changes
1
Hide whitespace changes
Inline
Side-by-side
matlab/disp_steady_state.m
View file @
60efdd49
...
...
@@ -32,9 +32,9 @@ function disp_steady_state(M,oo)
skipline
()
disp
(
'STEADY-STATE RESULTS:'
)
skipline
()
endo_names
=
M
.
endo_names
;
endo_names
=
char
(
M
.
endo_names
)
;
steady_state
=
oo
.
steady_state
;
for
i
=
1
:
M
.
orig_endo_nbr
disp
(
s
printf
(
'%s \t\t %g'
,
endo_names
{
i
}
,
steady_state
(
i
))
)
;
f
printf
(
'%s \t\t %g
\n
'
,
endo_names
(
i
,:)
,
steady_state
(
i
));
end
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment