iOS SDK中如何计算cos、sin、tan?

发布于 2024-08-18 14:51:54 字数 91 浏览 11 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

总攻大人 2024-08-25 14:51:54

大多数数学库使用弧度,而不是度数。

Most math libraries use radians, not degrees.

一绘本一梦想 2024-08-25 14:51:54

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.

執念 2024-08-25 14:51:54

如果得到以弧度为单位的输出,则可以将其转换为度数。

弧度 * (180/pi)

pi = 3.1415926535897932384626433.......

If you get the output in Radians you can convert it to degrees.

Radian * (180/pi)

pi = 3.1415926535897932384626433.......

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文