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
18edf6e4
Commit
18edf6e4
authored
Dec 06, 2014
by
Stéphane Adjemian (Charybdis)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rewrote strings function.
parent
f7feb49c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
14 deletions
+9
-14
src/@dates/strings.m
src/@dates/strings.m
+9
-14
No files found.
src/@dates/strings.m
View file @
18edf6e4
function
m
=
strings
(
dd
)
function
m
=
strings
(
o
)
% Returns a cell array of strings containing the dates
%
% INPUTS
%
o dd dates object
%
- o [dates] object with n elements.
%
% OUTPUTS
% o m cell array of strings
%
% SPECIAL REQUIREMENTS
% none
% - m [cell of char] object with n elements.
% Copyright (C) 2013 Dynare Team
%
% This file is part of Dynare.
% 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.
...
...
@@ -28,8 +23,8 @@ function m = strings(dd)
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
m
=
cell
(
1
,
dd
.
ndat
);
m
=
cell
(
1
,
o
.
ndat
);
for
i
=
1
:
dd
.
ndat
m
(
i
)
=
{
date2string
(
dd
.
time
(
i
,:),
dd
.
freq
)
};
for
i
=
1
:
o
.
length
()
m
(
i
)
=
{
date2string
(
o
.
time
(
i
,:),
o
.
freq
)
};
end
\ No newline at end of file
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