Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dseries
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sébastien Villemot
dseries
Commits
399ab297
Commit
399ab297
authored
Dec 06, 2014
by
Stéphane Adjemian (Charybdis)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rewrote unique function.
parent
8c2390a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
16 deletions
+15
-16
src/@dates/unique.m
src/@dates/unique.m
+15
-16
No files found.
src/@dates/unique.m
View file @
399ab297
function
B
=
unique
(
A
)
% --*-- Unitary tests --*--
function
o
=
unique
(
o
)
% --*-- Unitary tests --*--
% Overloads the unique function for dates objects.
%
% INPUTS
%
o A dates object.
%
- o [dates]
%
% OUTPUTS
% o B dates object (a copy of A without repetitions, only the last occurence of a date is kept).
% Copyright (C) 2012-2013 Dynare Team
% OUPUTS
% - o [dates]
%
% This file is part of Dynare.
% REMARKS
% 1. Only the last occurence of a date is kept.
% Copyright (C) 2013-2014 Dynare Team
%
%
Dynar
e is free software: you can redistribute it and/or modify
%
This cod
e is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% Dynare is distributed in the hope that it will be useful,
% Dynare
dates submodule
is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
...
...
@@ -25,20 +26,18 @@ function B = unique(A) % --*-- Unitary tests --*--
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
if
isequal
(
A
.
ndat
,
1
)
if
o
.
ndat
<=
1
return
end
B
=
A
;
if
isoctave
||
matlab_ver_less_than
(
'8.1.0'
)
[
tmp
,
id
,
jd
]
=
unique
(
A
.
time
,
'rows'
);
[
tmp
,
id
,
jd
]
=
unique
(
o
.
time
,
'rows'
);
else
[
tmp
,
id
,
jd
]
=
unique
(
A
.
time
,
'rows'
,
'legacy'
);
[
tmp
,
id
,
jd
]
=
unique
(
o
.
time
,
'rows'
,
'legacy'
);
end
B
.
time
=
A
.
time
(
sort
(
id
),:);
B
.
ndat
=
size
(
B
.
time
,
1
);
o
.
time
=
o
.
time
(
sort
(
id
),:);
o
.
ndat
=
size
(
o
.
time
,
1
);
%@test:1
%$ % Define some dates
...
...
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