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
Dynare
reporting
Commits
831783a3
Commit
831783a3
authored
Dec 17, 2015
by
Houtan Bastani
Browse files
remove strsplit which does not exist in earlier verions of Matlab
parent
93dd95c2
Changes
1
Hide whitespace changes
Inline
Side-by-side
macros/make_report_irfs.m
View file @
831783a3
...
...
@@ -84,7 +84,7 @@ function make_report_irfs(M, oo, ticks_every, showOutput)
if
~
calcxticks
data
=
dseries
(
oo
.
irfs
.
(
fields
{
idx
})
'
);
xTicks
=
1
:
ticks_every
:
floor
(
data
.
nobs
/
ticks_every
)
*
ticks_every
+
1
;
xTickLabels
=
strsplit
(
num2str
(
xTicks
-
1
));
xTickLabels
=
regexp
(
num2str
(
xTicks
-
1
)
,
'(?:\s)+'
,
'split'
);
calcxticks
=
true
;
end
r
=
r
.
addGraph
(
'data'
,
dseries
(
oo
.
irfs
.
(
fields
{
idx
})
'
),
...
...
...
Write
Preview
Markdown
is supported
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