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
Marco Ratto
dynare
Commits
2d7d1008
Commit
2d7d1008
authored
10 years ago
by
Stéphane Adjemian
Browse files
Options
Downloads
Patches
Plain Diff
Test that the names of the variables contained in the dseries objects are different.
parent
dc94022b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
matlab/utilities/dseries/from.m
+13
-5
13 additions, 5 deletions
matlab/utilities/dseries/from.m
with
13 additions
and
5 deletions
matlab/utilities/dseries/from.m
+
13
−
5
View file @
2d7d1008
...
...
@@ -141,6 +141,9 @@ end
% Set the number of variables
number_of_variables
=
size
(
leadlagtable
,
1
);
% Initialize a cell array containing the names of the variables.
variable_names
=
cell
(
1
);
% Test that all the involved variables are available dseries objects. Also check that
% these time series are defined over the time range given by d1 and d2 (taking care of
% the lags and leads) and check that each object is a singleton
...
...
@@ -162,6 +165,15 @@ for i=1:number_of_variables
msg
=
sprintf
(
'dseries::from: Object %s must contain only one variable!\n'
,
current_variable
);
error
(
msg
)
end
if
i
>
1
if
ismember
(
var
.
name
,
variable_names
)
error
(
'dseries::from: All the dseries objects should contain variables with different names!'
)
else
variable_names
(
i
)
=
{
var
.
name
{
1
}};
end
else
variable_names
(
i
)
=
{
var
.
name
{
1
}};
end
if
d1
<
var
.
dates
(
1
)
+
leadlagtable
{
i
,
2
}
msg
=
sprintf
(
'dseries::from: Initial date of the loop (%s) is inconsistent with %s
''
s range!\n'
,
char
(
d1
),
current_variable
);
msg
=
[
msg
,
sprintf
(
' Initial date should be greater than or equal to %s.'
,
char
(
var
.
dates
(
1
)
+
leadlagtable
{
i
,
2
}))];
...
...
@@ -221,11 +233,7 @@ list_of_variables = leadlagtable{1,1};
for
i
=
2
:
number_of_variables
list_of_variables
=
[
list_of_variables
,
','
leadlagtable
{
i
,
1
}];
end
try
eval
(
sprintf
(
'tmp = [%s];'
,
list_of_variables
));
catch
error
(
'dseries::from: All the dseries objects should contain variables with different names!'
)
end
eval
(
sprintf
(
'tmp = [%s];'
,
list_of_variables
));
% Get base time index
t1
=
find
(
d1
==
tmp
.
dates
);
...
...
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