这是一个 Trig 101 问题。不幸的是,我不太记得我的基本触发器(太旧了:)。我需要在 Golang 中找到一个公式来计算给定系数的角度(以度为单位)。举个例子:Tan(angle) = 系数 Angle = arctan(系数)示例:角度 = arctan(0.2) = 11.31 度(其中系数 = 0.2)角度 = arctan(0.3) = 16.699 度(其中系数 = 0.3)角度 = arctan(0.5) = 26.565 度(其中系数 = 0.5)下面的 URL 给出了显示正确值的计算器:http://www.rapidtables.com/calc/math/Tan_Calculator.htm鉴于这些例子,我如何推导出一个用 Golang 编写的公式来计算给定系数的角度?在此先感谢您的时间。
1 回答
慕容708150
TA贡献1831条经验 获得超4个赞
package main
import (
"fmt"
"math"
)
func main() {
fmt.Println("Tan: ", math.Tan(90))
fmt.Println("Arctan: ", math.Atan(0.2))
fmt.Println("Arctan: ", math.Atan(0.3))
fmt.Println("Arctan: ", math.Atan(0.5))
}
- 1 回答
- 0 关注
- 212 浏览
添加回答
举报
0/150
提交
取消