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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
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
Stéphane Adjemian
dynare
Commits
06926e01
Verified
Commit
06926e01
authored
1 year ago
by
Stéphane Adjemian
Browse files
Options
Downloads
Patches
Plain Diff
Bug fix (missing semicolon).
parent
cfb8a1d1
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
matlab/aggregate.m
+2
-2
2 additions, 2 deletions
matlab/aggregate.m
with
2 additions
and
2 deletions
matlab/aggregate.m
+
2
−
2
View file @
06926e01
...
@@ -274,9 +274,9 @@ for i=1:rows(elist)
...
@@ -274,9 +274,9 @@ for i=1:rows(elist)
fprintf
(
fid
,
'\t%s %s\n'
,
elist
{
i
,
1
},
elist
{
i
,
2
});
fprintf
(
fid
,
'\t%s %s\n'
,
elist
{
i
,
1
},
elist
{
i
,
2
});
end
end
end
end
fprintf
(
fid
,
';\n\n'
);
if
exist
(
'plist'
,
'var'
)
&&
~
isempty
(
plist
)
if
exist
(
'plist'
,
'var'
)
&&
~
isempty
(
plist
)
% Print list of parameters.
% Print list of parameters.
fprintf
(
fid
,
';\n\n'
);
fprintf
(
fid
,
'parameters\n'
);
fprintf
(
fid
,
'parameters\n'
);
for
i
=
1
:
length
(
plist
)
for
i
=
1
:
length
(
plist
)
fprintf
(
fid
,
'\t%s\n'
,
plist
{
i
});
fprintf
(
fid
,
'\t%s\n'
,
plist
{
i
});
...
@@ -296,8 +296,8 @@ if exist('xlist', 'var') && ~isempty(xlist)
...
@@ -296,8 +296,8 @@ if exist('xlist', 'var') && ~isempty(xlist)
fprintf
(
fid
,
'\t%s %s\n'
,
xlist
{
i
,
1
},
xlist
{
i
,
2
});
fprintf
(
fid
,
'\t%s %s\n'
,
xlist
{
i
,
1
},
xlist
{
i
,
2
});
end
end
end
end
end
fprintf
(
fid
,
';\n'
);
fprintf
(
fid
,
';\n'
);
end
skipline
(
1
,
fid
)
skipline
(
1
,
fid
)
% Provide an interface to flip endogenous and exogenous variables. Active if only macrovariable
% Provide an interface to flip endogenous and exogenous variables. Active if only macrovariable
% InvertModel is set to True. The calls to the change_type command must be provided in the file
% InvertModel is set to True. The calls to the change_type command must be provided in the file
...
...
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