go abs 源码

2022-07-15 浏览 (1158)

golang abs 代码

文件路径:/src/math/cmplx/abs.go

/ 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 provides basic constants and mathematical functions for
/ complex numbers. Special case handling conforms to the C99 standard
/ Annex G IEC 60559-compatible complex arithmetic.
package cmplx

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)) }

相关信息

go 源码目录

相关文章

go asin 源码

go cmath_test 源码

go conj 源码

go example_test 源码

go exp 源码

go huge_test 源码

go isinf 源码

go isnan 源码

go log 源码

go phase 源码

^