iOS SDK中如何计算cos、sin、tan?
iOS SDK 中如何计算 cos、sin、tan 等三角函数?
我尝试了 tan(45)
但它返回了错误的输出。有什么帮助吗?
How do you calculate trig functions like cos, sin, tan in the iOS SDK?
I tried tan(45)
but it returns wrong output. Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
大多数数学库使用弧度,而不是度数。
Most math libraries use radians, not degrees.
cos、sin 和 tan 等函数位于标准库中,可以通过包含 math.h 来使用。您可以通过在 Mac 上的终端窗口中输入“
man math
”来全面了解这些内容。例如,可以通过输入“man sin
”来读取更具体的信息。然后您将看到 sin() 采用弧度参数,而不是度数。如果您不知道如何将弧度转换为度数,请在 Stack Overflow 上搜索。functions like cos, sin and tan are in the standard library and can be used by including math.h. You can get a good overview of these by typing '
man math
' in a Terminal window on your Mac. More specific info can be read by typing 'man sin
' for example. You will then see that sin() takes a radians arguments, not degrees. Search here on Stack Overflow if you don't know how to convert radians to degrees.如果得到以弧度为单位的输出,则可以将其转换为度数。
弧度 * (180/pi)
pi = 3.1415926535897932384626433.......
If you get the output in Radians you can convert it to degrees.
Radian * (180/pi)
pi = 3.1415926535897932384626433.......