OXIESEC PANEL
- Current Dir:
/
/
opt
/
golang
/
1.19.4
/
src
/
math
/
cmplx
Server IP: 191.96.63.230
Upload:
Create Dir:
Name
Size
Modified
Perms
ð
..
-
12/01/2022 06:13:56 PM
rwxr-xr-x
ð
abs.go
523 bytes
12/01/2022 06:12:59 PM
rw-r--r--
ð
asin.go
5.92 KB
12/01/2022 06:12:59 PM
rw-r--r--
ð
cmath_test.go
48.07 KB
12/01/2022 06:12:59 PM
rw-r--r--
ð
conj.go
292 bytes
12/01/2022 06:12:59 PM
rw-r--r--
ð
example_test.go
567 bytes
12/01/2022 06:12:59 PM
rw-r--r--
ð
exp.go
2.05 KB
12/01/2022 06:12:59 PM
rw-r--r--
ð
huge_test.go
496 bytes
12/01/2022 06:12:59 PM
rw-r--r--
ð
isinf.go
506 bytes
12/01/2022 06:12:59 PM
rw-r--r--
ð
isnan.go
598 bytes
12/01/2022 06:12:59 PM
rw-r--r--
ð
log.go
2.04 KB
12/01/2022 06:12:59 PM
rw-r--r--
ð
phase.go
372 bytes
12/01/2022 06:12:59 PM
rw-r--r--
ð
polar.go
371 bytes
12/01/2022 06:12:59 PM
rw-r--r--
ð
pow.go
2.28 KB
12/01/2022 06:12:59 PM
rw-r--r--
ð
rect.go
348 bytes
12/01/2022 06:12:59 PM
rw-r--r--
ð
sin.go
4.78 KB
12/01/2022 06:12:59 PM
rw-r--r--
ð
sqrt.go
3.01 KB
12/01/2022 06:12:59 PM
rw-r--r--
ð
tan.go
8.52 KB
12/01/2022 06:12:59 PM
rw-r--r--
Editing: polar.go
Close
// Copyright 2010 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package cmplx // Polar returns the absolute value r and phase Îļ of x, // such that x = r * e**Îļi. // The phase is in the range [-Pi, Pi]. func Polar(x complex128) (r, Îļ float64) { return Abs(x), Phase(x) }