From 3b8b6f82cfd0925fb010e9df451b3995bca13e24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Ulysses=29?= <stephane.adjemian@univ-lemans.fr> Date: Wed, 13 Mar 2013 23:49:21 +0100 Subject: [PATCH] Moved shiftS function. --- matlab/reporting/shiftS.m | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 matlab/reporting/shiftS.m diff --git a/matlab/reporting/shiftS.m b/matlab/reporting/shiftS.m deleted file mode 100644 index 044bb4460f..0000000000 --- a/matlab/reporting/shiftS.m +++ /dev/null @@ -1,26 +0,0 @@ -function S = shiftS(S) -%function S = shiftS(S) - -% Copyright (C) 2013 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/>. - -if length(S) > 1 - S = S(2:end); -else - S = {}; -end -end -- GitLab