Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johannes Pfeifer
dynare
Commits
71a68919
Verified
Commit
71a68919
authored
5 years ago
by
Sébastien Villemot
Browse files
Options
Downloads
Patches
Plain Diff
Fix mistakes done during previous merge commits
parent
f6651178
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples/NK_baseline_steadystate.m
+0
-9
0 additions, 9 deletions
examples/NK_baseline_steadystate.m
matlab/lmmcp/dyn_lmmcp_func.m
+0
-6
0 additions, 6 deletions
matlab/lmmcp/dyn_lmmcp_func.m
with
0 additions
and
15 deletions
examples/NK_baseline_steadystate.m
+
0
−
9
View file @
71a68919
...
...
@@ -96,20 +96,11 @@ g2=epsilon/(epsilon-1)*g1;
%% end own model equations
for
iter
=
1
:
length
(
M_
.
params
)
%update parameters set in the file
<<<<<<<
HEAD
eval
([
'M_.params('
num2str
(
iter
)
') = '
M_
.
param_names
(
iter
,:)
';'
])
=======
eval
([
'M_.params('
num2str
(
iter
)
') = '
M_
.
param_names
{
iter
}
';'
])
>>>>>>>
master
end
NumberOfEndogenousVariables
=
M_
.
orig_endo_nbr
;
%auxiliary variables are set automatically
for
ii
=
1
:
NumberOfEndogenousVariables
<<<<<<<
HEAD
varname
=
deblank
(
M_
.
endo_names
(
ii
,:));
eval
([
'ys('
int2str
(
ii
)
') = '
varname
';'
]);
=======
varname
=
M_
.
endo_names
{
ii
};
eval
([
'ys('
int2str
(
ii
)
') = '
varname
';'
]);
>>>>>>>
master
end
This diff is collapsed.
Click to expand it.
matlab/lmmcp/dyn_lmmcp_func.m
+
0
−
6
View file @
71a68919
...
...
@@ -46,12 +46,6 @@ for it = 2:(periods+1)
A
(
i_rows
,
i_cols_A
)
=
jacobian
(
eq_index
,
i_cols_j
);
end
end
i_rows
=
i_rows
+
ny
;
i_cols
=
i_cols
+
ny
;
if
nargout
==
2
&&
it
>
2
i_cols_A
=
i_cols_A
+
ny
;
end
end
i_rows
=
i_rows
+
ny
;
i_cols
=
i_cols
+
ny
;
...
...
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