Golang 找到复数的反正切函数
Go语言通过cmplx包提供了基本常量和复数的数学函数的内置支持。你可以使用math/cmplx包中提供的Atan()函数,找到指定复数的反正切。因此,你需要使用import关键字在程序中添加math/cmplx包以访问Atan()函数。
语法:
func Atan(x complex128) complex128
让我们使用给定的示例讨论这个概念:
例1:
// Go程序演示如何找到
// 复数的反正切函数
package main
import (
"fmt"
"math/cmplx"
)
// 主函数
func main() {
// 使用Atan()函数来找到指定复数的反正切
res_1 := cmplx.Atan(3 + 5i)
res_2 := cmplx.Atan(-4 + 8i)
res_3 := cmplx.Atan(-8 - 7i)
// 显示结果
fmt.Println("Result 1:", res_1)
fmt.Println("Result 2:", res_2)
fmt.Println("Result 3:", res_3)
}
输出:
Result 1: (1.4808695768986575+0.14694666622552977i)
Result 2: (-1.5203354344612496+0.10008092715193644i)
Result 3: (-1.4998477994928145-0.06171501948288145i)
例2:
// Go程序演示如何找到
// 复数的反正切函数
package main
import (
"fmt"
"math/cmplx"
)
// 主函数
func main() {
cnumber_1 := complex(5, 7)
cnumber_2 := complex(6, 9)
// 找到反正切
cvalue_1 := cmplx.Atan(cnumber_1)
cvalue_2 := cmplx.Atan(cnumber_2)
// 两个反正切值的和
res := cvalue_1 + cvalue_2
// 显示结果
fmt.Println("Complex Number 1: ", cnumber_1)
fmt.Println("Inverse tangent 1: ", cvalue_1)
fmt.Println("Complex Number 2: ", cnumber_2)
fmt.Println("Inverse tangent 2: ", cvalue_2)
fmt.Println("Final sum: ", res)
}
输出:
Complex Number 1: (5+7i)
Inverse tangent 1: (1.502726846368326+0.09444062638970716i)
Complex Number 2: (6+9i)
Inverse tangent 2: (1.5192555225335465+0.07687117493699018i)
Final sum: (3.0219823689018726+0.17131180132669732i)