]> Creatis software - CreaPhase.git/blob - octave_packages/dataframe-0.9.1/@dataframe/fix.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / dataframe-0.9.1 / @dataframe / fix.m
1 function resu = fix(df, varargin) 
2
3   %% Copyright (C) 2009-2012 Pascal Dupuis <Pascal.Dupuis@uclouvain.be>
4   %%
5   %% This file is part of Octave.
6   %%
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.
11   %%
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
16   %% details.
17   %%
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.
22
23   %#
24   %# $Id: fix.m 9585 2012-02-05 15:32:46Z cdemills $
25   %#
26
27   resu = df_mapper(@fix, df, varargin{:});
28
29 endfunction