


function clean_ms_mdd_files(file_tag, pt)
removes MS mdd files
INPUTS
file_tag: string indicating tag to use when deleting files
pt: numeric proposal type, used to create filename
OUTPUTS
none
SPECIAL REQUIREMENTS
none

0001 function clean_ms_mdd_files(file_tag, pt) 0002 % function clean_ms_mdd_files(file_tag, pt) 0003 % removes MS mdd files 0004 % 0005 % INPUTS 0006 % file_tag: string indicating tag to use when deleting files 0007 % pt: numeric proposal type, used to create filename 0008 % 0009 % OUTPUTS 0010 % none 0011 % 0012 % SPECIAL REQUIREMENTS 0013 % none 0014 0015 % Copyright (C) 2011 Dynare Team 0016 % 0017 % This file is part of Dynare. 0018 % 0019 % Dynare is free software: you can redistribute it and/or modify 0020 % it under the terms of the GNU General Public License as published by 0021 % the Free Software Foundation, either version 3 of the License, or 0022 % (at your option) any later version. 0023 % 0024 % Dynare is distributed in the hope that it will be useful, 0025 % but WITHOUT ANY WARRANTY; without even the implied warranty of 0026 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0027 % GNU General Public License for more details. 0028 % 0029 % You should have received a copy of the GNU General Public License 0030 % along with Dynare. If not, see <http://www.gnu.org/licenses/>. 0031 0032 delete_if_exists(['mdd_t' num2str(pt) '_' file_tag '.out']); 0033 delete_if_exists(['proposal_t' num2str(pt) '_' file_tag '.out']); 0034 end