Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们如何使用cordic来
tanh(x+1)/tanh(x)
我不知道如何将cordic应用于上述功能。
换句话说,在上述函数的哪一点上,我们可以应用cordic?
Cordic 是一种用于实现三角函数的极其快速和高效的算法。您可以找到最常见的实现是指 sin/cos 函数,但它可以用于它们的双曲线对应物。
一旦你实现了 sinh/cosh 就很容易得到 tanh。
看看这里