github.com/shogo82148/std@v1.22.1-0.20240327122250-4e474527810c/math/cmplx/abs.go (about) 1 // Copyright 2010 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // パッケージcmplxは、複素数の基本的な定数と数学関数を提供します。 6 // 特殊なケースの処理は、C99標準の付録G IEC 60559互換の複素数演算に準拠しています。 7 package cmplx 8 9 // Absはxの絶対値(またはモジュラスとも呼ばれる)を返します。 10 func Abs(x complex128) float64