1function C = sinh (G)
2%SINH hyperbolic sine.
3% C = sinh (G) is the hyperbolic sine of each entry of G.
4%
5% See also GrB/sin, GrB/asin, GrB/asinh.
6
7% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
8% SPDX-License-Identifier: GPL-3.0-or-later
9
10G = G.opaque ;
11if (~gb_isfloat (gbtype (G)))
12    op = 'sinh.double' ;
13else
14    op = 'sinh' ;
15end
16
17C = GrB (gbapply (op, G)) ;
18
19