📅  最后修改于: 2023-12-03 14:41:35.235000             🧑  作者: Mango
Golang内置的math包提供了Trigonometric函数族,其中包括求余弦值的函数cos。
需要在代码中先导入math包:
import "math"
然后在需要求余弦值的地方调用cos函数即可。
cos函数的参数为弧度值,如果是角度值,需要先转换成弧度值。
cosValue := math.Cos(angle)
下面是一个求90度的余弦值的示例代码:
package main
import (
"fmt"
"math"
)
func main() {
angle := 90.0
radian := angle * math.Pi / 180
cosValue := math.Cos(radian)
fmt.Printf("cos(%.0f) = %.2f", angle, cosValue)
}
输出:
cos(90) = 0.00
通过math包提供的Trigonometric函数族,可以方便地求出各种三角函数的值。在使用时需要注意单位的转换,通常要将角度值转换成弧度值。