为了账号安全,请及时绑定邮箱和手机立即绑定

Golang 基本三角反正切计算

Golang 基本三角反正切计算

Go
慕田峪4524236 2022-01-04 10:01:38
这是一个 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))

}


查看完整回答
反对 回复 2022-01-04
  • 1 回答
  • 0 关注
  • 212 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信