Add legacy function for loading mat-files with old interface

Follows approach of #758 and closes #1364
time-shift
Johannes Pfeifer 2017-04-27 14:04:32 +02:00 committed by Stéphane Adjemian (Charybdis)
parent 9a53a0f8b0
commit b52c095a6b
2 changed files with 48 additions and 2 deletions

View File

@ -0,0 +1,41 @@
function data = load_mat_file_data_legacy(datafile, varobs)
% Copyright (C) 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 <http://www.gnu.org/licenses/>.
data_file=load(datafile);
names=fieldnames(data_file);
if ~all(ismember(varobs',names))
missing_variables=varobs(~ismember(varobs',names))';
disp_string=[missing_variables{1,:}];
for ii=2:size(missing_variables,1)
disp_string=[disp_string,', ',missing_variables{ii,:}];
end
error('makedataset: The variable(s) %s listed in varobs are not contained in the dataset %s',disp_string);
else
data_mat=[];
for var_iter=1:length(varobs)
try
data_mat=[data_mat data_file.(varobs{1,var_iter})];
catch
error('makedataset: The variable %s does not have dimensions conformable with the previous one',varobs{1,var_iter});
end
end
end
data = dseries(data_mat,[],varobs);

View File

@ -99,11 +99,16 @@ end
% Load the data in a dseries object.
if ~isempty(datafile)
if ~( newdatainterface==0 && strcmp(datafile(end-1:end),'.m'))
if ~( newdatainterface==0 && (strcmp(datafile(end-1:end),'.m')|| strcmp(datafile(end-3:end),'.mat')))
DynareDataset = dseries(datafile);
else
if strcmp(datafile(end-1:end),'.m')
% Load an m file with the old interface.
DynareDataset = load_m_file_data_legacy(datafile, DynareOptions.varobs);
DynareDataset = load_m_file_data_legacy(datafile, DynareOptions.varobs);
elseif strcmp(datafile(end-3:end),'.mat')
% Load a mat file with the old interface.
DynareDataset = load_mat_file_data_legacy(datafile, DynareOptions.varobs);
end
end
else
DynareDataset = dseriesobjectforuserdataset;