Golang 找到复数的反双曲余弦
Go语言通过cmplx包提供了对基本常量和数学函数的内置支持,用于处理复数。借助于math/cmplx包提供的 Acosh()函数 ,您可以找到特定复数的反双曲余弦。因此,您需要使用import关键字在程序中添加一个math/cmplx包以访问Acosh()函数。
语法:
func Acosh(x complex128) complex128
我们可以通过以下示例来讨论这个概念:
示例1:
// Golang程序演示如何找到复数的反双曲余弦
package main
import (
"fmt"
"math/cmplx"
)
// 主函数
func main() {
// 查找指定复数的反双曲余弦
//使用Acosh()函数
res_1 := cmplx.Acosh(2 + 5i)
res_2 := cmplx.Acosh(-9 + 8i)
res_3 := cmplx.Acosh(-5 - 7i)
// 显示结果
fmt.Println("Result 1:", res_1)
fmt.Println("Result 2:", res_2)
fmt.Println("Result 3:", res_3)
}
输出:
Result 1: (2.3830308809003298+1.1961255219693694i)
Result 2: (3.181316253686062+2.4132370433090795i)
Result 3: (2.8462888282083862-2.18786062347089i)
示例2:
// Golang程序演示如何找到复数的反双曲余弦
package main
import (
"fmt"
"math/cmplx"
)
// 主函数
func main() {
cnumber_1 := complex(2, 3)
cnumber_2 := complex(6, 8)
//查找指定复数的反双曲余弦
cvalue_1 := cmplx.Acosh(cnumber_1)
cvalue_2 := cmplx.Acosh(cnumber_2)
// 两个反双曲余弦值的和
res := cvalue_1 + cvalue_2
// 显示结果
fmt.Println("Complex Number 1: ", cnumber_1)
fmt.Println("Inverse hyperbolic cosine 1: ", cvalue_1)
fmt.Println("Complex Number 2: ", cnumber_2)
fmt.Println("Inverse hyperbolic cosine 2: ", cvalue_2)
fmt.Println("Sum of inverse hyperbolic cosines : ", res)
}
输出:
Complex Number 1: (2+3i)
Inverse hyperbolic cosine 1: (1.9833870299165355+1.0001435424737974i)
Complex Number 2: (6+8i)
Inverse hyperbolic cosine 2: (2.9964401392355113+0.9296901439918359i)
Sum of inverse hyperbolic cosines : (4.979827169152047+1.9298336864656334i)