gpt4 book ai didi

数学 - 如何计算 arccos 公式?

转载 作者:行者123 更新时间:2023-12-05 06:45:57 24 4
gpt4 key购买 nike

谁能帮我计算 Arccos(X) ?用一些公式?我试图在某些环境(SAP WEBI)中使用有限的数学公式来做到这一点。 (只有 cos , sin , tan .. )。

最佳答案

你可以试试牛顿法:

function acos(a) {
delta = 1e-5
// a lousy first approximation
x = pi*(1-a)/2
last = x
x += (cos x-a)/sin x
while ( abs(x-last) > delta ) {
last = x
x += (cos x-a)/sin x
}
return x
}

关于数学 - 如何计算 arccos 公式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20453903/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com