OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Atan
(Results
1 - 4
of
4
) sorted by null
/prebuilts/go/darwin-x86/src/math/
atan.go
12
// from http://netlib.sandia.gov/cephes/cmath/
atan
.c, available from
16
//
atan
.c
20
// double x, y,
atan
();
21
// y =
atan
( x );
90
//
Atan
returns the arctangent, in radians, of x.
93
//
Atan
(±0) = ±0
94
//
Atan
(±Inf) = ±Pi/2
95
func
Atan
(x float64) float64
97
func
atan
(x float64) float64 {
func
/prebuilts/go/linux-x86/src/math/
atan.go
12
// from http://netlib.sandia.gov/cephes/cmath/
atan
.c, available from
16
//
atan
.c
20
// double x, y,
atan
();
21
// y =
atan
( x );
90
//
Atan
returns the arctangent, in radians, of x.
93
//
Atan
(±0) = ±0
94
//
Atan
(±Inf) = ±Pi/2
95
func
Atan
(x float64) float64
97
func
atan
(x float64) float64 {
func
/prebuilts/go/darwin-x86/src/math/cmplx/
asin.go
141
//
Atan
returns the inverse tangent of x.
142
func
Atan
(x complex128) complex128 {
168
z =
Atan
(z)
/prebuilts/go/linux-x86/src/math/cmplx/
asin.go
141
//
Atan
returns the inverse tangent of x.
142
func
Atan
(x complex128) complex128 {
168
z =
Atan
(z)
Completed in 238 milliseconds