Golang 如何找到给定弧度值的双曲正切函数
在本教程中,我们将学习如何在Golang编程语言中找到给定弧度值的双曲正切函数。 Golang语言具有许多具有预定义函数的包,开发人员可以使用这些函数而无需编写完整的逻辑。
为了执行数学运算和逻辑运算,我们在Golang中有一个math包。我们只使用这个包来找到给定弧度值的双曲正切函数。我们还将看到如何导入该包以及如何通过编写Golang代码来调用该包中的函数。
双曲正切函数
定义
双曲正切函数类似于三角函数。代数表达式有助于找到包括指数函数(e^x)在内的双曲函数。双曲正切的公式如下,不同角度的双曲正切值如下。
语法
Tanhx = (ex – e-x) / (ex + e-x)
图表
不同角度的双曲正切值
- Tanh(0) = 0
-
Tanh(30) = 1
-
Tanh(45) = 1
-
Tanh(60) = 1
-
Tanh(90) = 1
步骤
步骤1 - 声明一个变量来存储守护者的值和float32类型的答案。
步骤2 - 初始化一个弧度的变量。
步骤3 - 调用双曲正切函数并传递弧度值。
步骤4 - 打印结果。
示例
在这个示例中,我们将编写一个Golang程序,导入一个 math 包,并调用双曲正切函数。
package main
import (
// fmt package provides the function to print anything
"fmt"
// math package provides multiple functions for different
// mathematical operations
"math"
)
func main() {
// declaring the variables to store the value of radian value and answer
var radianValue, answer float64
fmt.Println("Program to find the hyperbolic Tangent of a given radian value in the Golang programming language using a math package.")
// initializing the value of radian value
radianValue = 4.5
// finding Hyperbolic Tangent for the given radian value
answer = math.Tanh(radianValue)
// printing the result
fmt.Println("The hyperbolic Tangent value with the value of radian", radianValue, "is", answer)
}
输出
Program to find the hyperbolic Tangent of a given radian value in the Golang programming language using a math package.
The hyperbolic Tangent value with the value of radian 4.5 is 0.9997532108480275
步骤
步骤1 - 声明一个变量来存储guardian和答案的float32类型的值。
步骤2 - 初始化一个弧度变量。
步骤3 - 调用我们定义的双曲正切函数,并将弧度值作为参数传递。
步骤4 - 打印结果。
示例
在本示例中,我们将编写一个Golang程序,导入一个 math 包,在一个独立的函数中调用双曲正切函数,并调用该函数main。
package main
import (
// fmt package provides the function to print anything
"fmt"
// math package provides multiple functions for different
// mathematical operations
"math"
)
// this is a function with a parameter of float64 type and a return type of float64
func HyperbolicTangent(angle float64) float64 {
// returning the Hyperbolic Tangent of the angle
return math.Tanh(angle)
}
func main() {
// declaring the variables to store the value of radian value and answer
var radianValue, answer float64
fmt.Println("Program to find the Hyperbolic Tangent of a given radian value in the Golang programming language using a separate function in the same program.")
// initializing the value of the radian value
radianValue = 4.5
// finding hyperbolic Tangent for the given radian value in separate function
answer = HyperbolicTangent(radianValue)
// printing the result
fmt.Println("The Hyperbolic Tangent value with the value of radian", radianValue, "is", answer)
}
输出
Program to find the Hyperbolic Tangent of a given radian value in the Golang programming language using a separate function in the same program.
The Hyperbolic Tangent value with the value of radian 4.5 is 0.9997532108480275
结论
通过使用数学包中的函数并将弧度值作为参数传递,有两种方法可以找到双曲正切函数。第二种方法将在程序中提供抽象。要了解更多关于Golang的信息,您可以探索这些 教程。