1function resu = sinh(df, varargin)
2
3  %% Copyright (C) 2009-2017 Pascal Dupuis <cdemills@gmail.com>
4  %%
5  %% This file is part of the dataframe package for Octave.
6  %%
7  %% This package 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 3, or (at your option) any later version.
11  %%
12  %% This package 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 this package; see the file COPYING.  If not,
20  %% see <http://www.gnu.org/licenses/>.
21
22  resu = df_mapper(@sinh, df, varargin{:});
23
24end
25