


function h =cumplot(x)


0001 function h = cumplot(x); 0002 %function h =cumplot(x) 0003 0004 % Copyright (C) 2012 Dynare Team 0005 % 0006 % This file is part of Dynare. 0007 % 0008 % Dynare is free software: you can redistribute it and/or modify 0009 % it under the terms of the GNU General Public License as published by 0010 % the Free Software Foundation, either version 3 of the License, or 0011 % (at your option) any later version. 0012 % 0013 % Dynare is distributed in the hope that it will be useful, 0014 % but WITHOUT ANY WARRANTY; without even the implied warranty of 0015 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0016 % GNU General Public License for more details. 0017 % 0018 % You should have received a copy of the GNU General Public License 0019 % along with Dynare. If not, see <http://www.gnu.org/licenses/>. 0020 0021 n=length(x); 0022 x=[-inf; sort(x); Inf]; 0023 y=[0:n n]./n; 0024 h0 = stairs(x,y); 0025 grid on, 0026 0027 if nargout, 0028 h=h0; 0029 end