Golang 基本三角反正切计算

这是一个 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 编写的公式来计算给定系数的角度?

在此先感谢您的时间。


慕田峪4524236
浏览 213回答 1
1回答

慕容708150

package mainimport (    "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))}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go