xref: /freebsd/lib/msun/man/sin.3 (revision 22cf89c938886d14f5796fc49f9f020c23ea8eaf)
1.\" Copyright (c) 1991 The Regents of the University of California.
2.\" All rights reserved.
3.\"
4.\"	@(#)sin.3	6.7 (Berkeley) 4/19/91
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright
9.\"    notice, this list of conditions and the following disclaimer.
10.\" 2. Redistributions in binary form must reproduce the above copyright
11.\"    notice, this list of conditions and the following disclaimer in the
12.\"    documentation and/or other materials provided with the distribution.
13.\" 3. Neither the name of the University nor the names of its contributors
14.\"    may be used to endorse or promote products derived from this software
15.\"    without specific prior written permission.
16.\"
17.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27.\" SUCH DAMAGE.
28.\"
29.\"     from: @(#)sin.3	6.7 (Berkeley) 4/19/91
30.\"
31.Dd April 1, 2020
32.Dt SIN 3
33.Os
34.Sh NAME
35.Nm sin ,
36.Nm sinf ,
37.Nm sinl
38.Nd sine functions
39.Sh LIBRARY
40.Lb libm
41.Sh SYNOPSIS
42.In math.h
43.Ft double
44.Fn sin "double x"
45.Ft float
46.Fn sinf "float x"
47.Ft long double
48.Fn sinl "long double x"
49.Sh DESCRIPTION
50The
51.Fn sin ,
52.Fn sinf ,
53and
54.Fn sinl
55functions compute the sine of
56.Fa x
57(measured in radians).
58A large magnitude argument may yield a result with little
59or no significance.
60.Sh RETURN VALUES
61The
62.Fn sin ,
63.Fn sinf ,
64and
65.Fn sinl
66functions return the sine value.
67.Sh SEE ALSO
68.Xr acos 3 ,
69.Xr asin 3 ,
70.Xr atan 3 ,
71.Xr atan2 3 ,
72.Xr cos 3 ,
73.Xr cosh 3 ,
74.Xr csin 3 ,
75.Xr math 3 ,
76.Xr sinh 3 ,
77.Xr tan 3 ,
78.Xr tanh 3
79.Sh STANDARDS
80These functions conform to
81.St -isoC-99 .
82.Sh HISTORY
83The
84.Fn sin
85function first appeared in
86.At v1 .
87