在 Go 语言中,cmplx 包为复数提供基本常量和数学函数。 Go 语言中的Phase()函数用于返回给定数字的相位(也称为参数)。而且,这个函数是在 cmplx 包下定义的。在这里,您需要导入“math/cmplx”包才能使用这些功能。
句法:
func Phase(x complex128) float64
返回值在 [-Pi, Pi] 范围内。
示例 1:
// Golang program to illustrate the complex.Phase() function
package main
import (
"fmt"
"math"
"math/cmplx"
)
// Main function
func main() {
// using the function
fmt.Printf("%.1f", cmplx.Phase(1i*math.Pi)+1)
}
输出:
2.6
示例 2:
// Golang program to illustrate the complex.Phase() function
package main
import (
"fmt"
"math"
"math/cmplx"
)
// Main function
func main() {
// using the function
fmt.Printf("%.1f, ", cmplx.Phase(1i*math.Pi))
fmt.Printf("%.1f", cmplx.Phase(2i*math.Pi)+3)
}
输出:
1.6, 4.6