如何在 Objective C 中使用 asin() 函数

发布于 2024-10-09 15:13:26 字数 202 浏览 3 评论 0原文

我试图在 iOS 应用程序中使用 asin() 函数来计算与 y 轴的角度。我正在使用三角学,但我一定在 asin() 函数上做错了什么,因为当我尝试将 0.707.... 作为 asin(rotation) 传递时,其中旋转是等于 0.707... 的双倍,我得到大约 0.78.....,我的计算器给了我 44.991...,这对于传入的变量来说是正确的。我做错了什么,请有人帮助我吗?

I am trying to use the asin() function in an iOS app to calculate an angle from the y axis. I am using trigonometry, but I must be doing something wrong with the asin() function, as when I try to pass in 0.707.... as asin(rotation) where rotation is a double equivalent to 0.707..., I get around 0.78....., where as my calculator gives me 44.991..., which is about correct from the variables passed in. What am I doing wrong, please can somebody help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

埋葬我深情 2024-10-16 15:13:26

您的计算器可能设置为度数。大多数计算机库使用弧度。您可以使用公式度=弧度*180/pi进行转换。

Your calculator is probably set to degrees. Most computer libraries use radians. You can convert using the formula degrees = radians*180/pi.

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