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
f7feb49c
Commit
f7feb49c
authored
Dec 06, 2014
by
Stéphane Adjemian (Charybdis)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rewrote sort method.
parent
fbc36e39
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
10 deletions
+8
-10
src/@dates/sort.m
src/@dates/sort.m
+8
-10
No files found.
src/@dates/sort.m
View file @
f7feb49c
function
dd
=
sort
(
dd
)
% --*-- Unitary tests --*--
function
o
=
sort
(
o
)
% --*-- Unitary tests --*--
% Sort method for dates class.
%
% INPUTS
%
o dd dates object.
%
- o [dates]
%
% OUTPUTS
%
o dd dates object (with dates sorted by increasing order)
.
%
- o [dates] with dates sorted by increasing order
.
% Copyright (C) 2011-201
3
Dynare Team
% Copyright (C) 2011-201
4
Dynare Team
%
% This file is part of Dynare.
%
% Dynare is free software: you can redistribute it and/or modify
% This code 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,11 +23,11 @@ function dd = sort(dd) % --*-- 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
(
dd
.
ndat
,
1
)
if
isequal
(
o
.
ndat
,
1
)
return
end
dd
.
time
=
sortrows
(
dd
.
time
,[
1
,
2
]);
o
.
time
=
sortrows
(
o
.
time
,[
1
,
2
]);
%@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