1 function resu = ceil(df, varargin)
3 %% Copyright (C) 2009-2012 Pascal Dupuis <Pascal.Dupuis@uclouvain.be>
5 %% This file is part of Octave.
7 %% Octave is free software; you can redistribute it and/or
8 %% modify it under the terms of the GNU General Public
9 %% License as published by the Free Software Foundation;
10 %% either version 2, or (at your option) any later version.
12 %% Octave is distributed in the hope that it will be useful,
13 %% but WITHOUT ANY WARRANTY; without even the implied
14 %% warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 %% PURPOSE. See the GNU General Public License for more
18 %% You should have received a copy of the GNU General Public
19 %% License along with Octave; see the file COPYING. If not,
20 %% write to the Free Software Foundation, 51 Franklin Street -
21 %% Fifth Floor, Boston, MA 02110-1301, USA.
24 %# $Id: ceil.m 9585 2012-02-05 15:32:46Z cdemills $
27 resu = df_mapper(@ceil, df, varargin{:});