function save(o, basename, format) % --*-- Unitary tests --*-- % Saves a dseries object on disk. % Copyright (C) 2013-2017 Dynare Team % % This file is part of Dynare. % % Dynare 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, % 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. % % You should have received a copy of the GNU General Public License % along with Dynare. If not, see . if nargin<3 || isempty(format) format = 'mat'; end if nargin<2 || isempty(basename) basename = 'dynare_series'; end switch format case 'm' currentdirectorycontent = dir(); if ismember([basename, '.m'],{currentdirectorycontent.name}) copyfile([basename, '.m'],[basename, '.m.csv']); end fid = fopen([basename, '.m'],'w'); fprintf(fid,'%% File created on %s.\n',datestr(now)); fprintf(fid,'\n'); fprintf(fid,'FREQ__ = %s;\n',num2str(frequency(o))); fprintf(fid,'INIT__ = ''%s'';\n',date2string(firstdate(o))); fprintf(fid,'\n'); fprintf(fid,'NAMES__ = {'); for i = 1:vobs(o) fprintf(fid,[ '''' o.name{i} '''']); if i