1function C = asin (G)
2%ASIN inverse sine.
3% C = asin (G) is the inverse sine of each entry of G.
4% C is complex if any entry in any (abs(G) > 1).
5%
6% See also GrB/sin, GrB/sinh, GrB/asinh.
7
8% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
9% SPDX-License-Identifier: GPL-3.0-or-later
10
11G = G.opaque ;
12C = GrB (gb_trig ('asin', G)) ;
13
14