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
Willi Mutschler
dynare
Commits
92adc85d
Commit
92adc85d
authored
Nov 14, 2013
by
Stéphane Adjemian
Browse files
Change renaming of the variables to be more consistent (qgrowth(X) instead of QGROWTH_X).
parent
400a4da4
Changes
2
Hide whitespace changes
Inline
Side-by-side
matlab/@dseries/qdiff.m
View file @
92adc85d
...
...
@@ -48,14 +48,14 @@ switch ts.freq
us
.
data
(
2
:
end
,
:
)
=
ts
.
data
(
2
:
end
,
:
)
-
ts
.
data
(
1
:
end
-
1
,
:
);
us
.
data
(
1
,
:
)
=
NaN
;
for
i
=
1
:
ts
.
vobs
us
.
name
(
i
)
=
{[
'
QDIFF_
'
us
.
name
{
i
}]
}
;
us
.
name
(
i
)
=
{[
'
qdiff
(
'
us
.
name
{
i
}
')'
]
}
;
us
.
tex
(
i
)
=
{[
'\
Delta
'
us
.
tex
{
i
}]
}
;
end
case
12
us
.
data
(
4
:
end
,
:
)
=
ts
.
data
(
4
:
end
,
:
)
-
ts
.
data
(
1
:
end
-
3
,
:
);
us
.
data
(
1
:
3
,
:
)
=
NaN
;
for
i
=
1
:
ts
.
vobs
us
.
name
(
i
)
=
{[
'
QDIFF_
'
us
.
name
{
i
}]
}
;
us
.
name
(
i
)
=
{[
'
qdiff
(
'
us
.
name
{
i
}
')'
]
}
;
us
.
tex
(
i
)
=
{[
'\
Delta_3
'
us
.
tex
{
i
}]
}
;
end
case
52
...
...
matlab/@dseries/qgrowth.m
View file @
92adc85d
...
...
@@ -48,14 +48,14 @@ switch ts.freq
us
.
data
(
2
:
end
,
:
)
=
ts
.
data
(
2
:
end
,
:
).
/
ts
.
data
(
1
:
end
-
1
,
:
)
-
1
;
us
.
data
(
1
,
:
)
=
NaN
;
for
i
=
1
:
ts
.
vobs
us
.
name
(
i
)
=
{[
'
QGROWTH_
'
us
.
name
{
i
}]
}
;
us
.
name
(
i
)
=
{[
'
qgrowth
(
'
us
.
name
{
i
}
')'
]
}
;
us
.
tex
(
i
)
=
{[
'\
delta
'
us
.
tex
{
i
}]
}
;
end
case
12
us
.
data
(
4
:
end
,
:
)
=
ts
.
data
(
4
:
end
,
:
).
/
ts
.
data
(
1
:
end
-
3
,
:
)
-
1
;
us
.
data
(
1
:
3
,
:
)
=
NaN
;
for
i
=
1
:
ts
.
vobs
us
.
name
(
i
)
=
{[
'
QGROWTH_
'
us
.
name
{
i
}]
}
;
us
.
name
(
i
)
=
{[
'
qgrowth
(
'
us
.
name
{
i
}
')'
]
}
;
us
.
tex
(
i
)
=
{[
'\
delta_3
'
us
.
tex
{
i
}]
}
;
end
case
52
...
...
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