Golang 找到指定数字的反双曲正切

Golang 找到指定数字的反双曲正切

在Golang中,math/cmplx包提供了计算复数各种数学运算的函数。反双曲正切函数,也称为arctanh,是这个包提供的众多函数之一。反双曲正切函数用于找到其双曲正切为给定数字的角度。本文介绍了如何在Golang中找到指定数字的反双曲正切。

语法

找到复数的反双曲正切的语法如下 –

func Acctanh(x complex128) complex128

参数

Acctanh()函数接受一个参数,一个复数。

返回值

Acctanh()函数返回给定复数的反双曲正切值。

示例1:找到复数的反双曲正切值

假设我们想要找到复数(2+3i)的反双曲正切值。下面是寻找它的代码 −

package main

import (
   "fmt"
   "math/cmplx"
)

func main() {
   // Creating a complex number
   z := complex(2, 3)

   // Finding the inverse hyperbolic tangent of the complex number
   actanh := cmplx.Atanh(z)

   // Displaying the result
   fmt.Println("Inverse Hyperbolic Tangent of", z, "is", actanh)
}

输出

Inverse Hyperbolic Tangent of (2+3i) is (0.14694666622552977+1.3389725222944935i)

示例2:求负复数的反双曲正切

假设我们要求一个负复数(-4-5i)的反双曲正切。以下是求解的代码-

package main

import (
   "fmt"
   "math/cmplx"
)

func main() {
   // Creating a complex number
   z := complex(-4, -5)

   // Finding the inverse hyperbolic tangent of the complex number
   atanh := cmplx.Atanh(z)

   // Displaying the result
   fmt.Println("Inverse Hyperbolic Tangent of", z, "is", atanh)
}

输出

Inverse Hyperbolic Tangent of (-4-5i) is (-0.09641562020299616-1.4483069952314644i)

示例3:找到零复数的反双曲正切值

假设我们想要找到零复数(0+0i)的反双曲正切值。以下是用于找到它的代码−

package main

import (
   "fmt"
   "math/cmplx"
)

func main() {
   // Creating a complex number
   z := complex(0, 0)

   // Finding the inverse hyperbolic tangent of the complex number
   atanh := cmplx.Atanh(z)

   // Displaying the result
   fmt.Println("Inverse Hyperbolic Tangent of", z, "is", atanh)
}

输出

Inverse Hyperbolic Tangent of (0+0i) is (0+0i)

结论

使用math/cmplx包的Acctanh()函数在Golang中找到指定数的反双曲正切是一项简单的任务。它接受一个复数作为输入,并返回该数的反双曲正切。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程