]> Creatis software - CreaPhase.git/blob - octave_packages/dataframe-0.9.1/@dataframe/plus.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / dataframe-0.9.1 / @dataframe / plus.m
1 function resu = plus(A, B);
2
3   %# function resu = plus(A, B)
4   %# Implements the '+' operator when at least one argument is a dataframe.
5
6   %% Copyright (C) 2009-2012 Pascal Dupuis <Pascal.Dupuis@uclouvain.be>
7   %%
8   %% This file is part of Octave.
9   %%
10   %% Octave is free software; you can redistribute it and/or
11   %% modify it under the terms of the GNU General Public
12   %% License as published by the Free Software Foundation;
13   %% either version 2, or (at your option) any later version.
14   %%
15   %% Octave is distributed in the hope that it will be useful,
16   %% but WITHOUT ANY WARRANTY; without even the implied
17   %% warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
18   %% PURPOSE.  See the GNU General Public License for more
19   %% details.
20   %%
21   %% You should have received a copy of the GNU General Public
22   %% License along with Octave; see the file COPYING.  If not,
23   %% write to the Free Software Foundation, 51 Franklin Street -
24   %% Fifth Floor, Boston, MA 02110-1301, USA.
25   
26   %#
27   %# $Id: plus.m 9585 2012-02-05 15:32:46Z cdemills $
28   %#
29
30   try
31     resu = df_func(@plus, A, B);
32   catch
33     disp(lasterr());
34     error("Operator + problem for %s vs. %s", class(A), class(B));
35   end_try_catch
36
37 endfunction