summaryrefslogtreecommitdiff
path: root/libgo/go/cmath/abs.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/cmath/abs.go')
-rw-r--r--libgo/go/cmath/abs.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/libgo/go/cmath/abs.go b/libgo/go/cmath/abs.go
new file mode 100644
index 000000000..725dc4e98
--- /dev/null
+++ b/libgo/go/cmath/abs.go
@@ -0,0 +1,12 @@
+// 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.
+
+// The cmath package provides basic constants
+// and mathematical functions for complex numbers.
+package cmath
+
+import "math"
+
+// Abs returns the absolute value (also called the modulus) of x.
+func Abs(x complex128) float64 { return math.Hypot(real(x), imag(x)) }