如何在 Golang 中查找给定弧度值的余弦?
在本教程中,我们将学习如何在 Golang 编程语言中查找给定弧度值的余弦。Golang 语言拥有许多包含预定义函数的包,开发人员可以使用这些函数而无需编写完整的逻辑。
为了执行数学运算和逻辑,我们在 Golang 中有一个math包。我们只使用此包来查找给定弧度值的余弦。我们还将了解如何导入包,以及如何通过编写 Golang 代码来调用此包包含的函数。
余弦
定义
余弦是三角函数的一部分。要理解余弦,请观察下图。
如果我们借助上图定义余弦。则角度 Ө 与余弦函数相等,等于邻边与斜边的比值。
cosӨ = 邻边 / 斜边
不同角度的余弦值
cos(0) = 1
cos(30) = √3 / 2
cos(45) = 1 / √2
cos(60) = 1 / 2
cos(90) = 0
cos(120) = -1 / 2
cos(135) = - 1 / √2
cos(150) = -√3 / 2
cos(180) = - 1
图形
现在我们将查看余弦函数的图形,并在图形上观察上述值。对于零角度,值为 1,然后直到角度变为 90 度,值为零。然后再次直到 180 度,我们将在第四象限得到一个镜像。
算法
步骤 1 - 声明变量以存储 guardian 和 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 cosine of a given radian value in the Golang programming language using a math package.") // initializing the value of radian value radianValue = 4.5 // finding cosine for the given radian value answer = math.Cos(radianValue) // printing the result fmt.Println("The cosine value with the value of radian", radianValue, "is", answer) }
输出
Program to find the cosine of a given radian value in the Golang programming language using a math package. The cosine value with the value of radian 4.5 is -0.21079579943077972
算法
步骤 1 - 声明变量以存储 guardian 和 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" ) // this is a function with a parameter of float64 type and a return type of float64 func Cosine(angle float64) float64 { // returning the cosine of the angle return math.Cos(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 cosine 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 cosine for the given radian value in separate function answer = Cosine(radianValue) // printing the result fmt.Println("The cosine value with the value of radian", radianValue, "is", answer) }
输出
Program to find the cosine of a given radian value in the Golang programming language using a separate function in the same program. The cosine value with the value of radian 4.5 is -0.21079579943077972
结论
这两种方法都是通过使用math包中的函数并将弧度值作为参数传递来查找余弦。第二种方法将为程序提供抽象。要了解有关 Golang 的更多信息,您可以浏览这些教程。